[Modify] Rename it
This commit is contained in:
parent
541dedf7ae
commit
cd5a602c8f
@ -906,7 +906,7 @@ namespace WebSocketSharp.Net
|
|||||||
: toResponseStringVersion1 ();
|
: toResponseStringVersion1 ();
|
||||||
}
|
}
|
||||||
|
|
||||||
internal static bool TryCreateCookie (
|
internal static bool TryCreate (
|
||||||
string name, string value, out Cookie result
|
string name, string value, out Cookie result
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
@ -337,7 +337,7 @@ namespace WebSocketSharp.Net
|
|||||||
if (cookie != null)
|
if (cookie != null)
|
||||||
ret.add (cookie);
|
ret.add (cookie);
|
||||||
|
|
||||||
if (!Cookie.TryCreateCookie (name, val, out cookie))
|
if (!Cookie.TryCreate (name, val, out cookie))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (ver != 0)
|
if (ver != 0)
|
||||||
@ -529,7 +529,7 @@ namespace WebSocketSharp.Net
|
|||||||
if (cookie != null)
|
if (cookie != null)
|
||||||
ret.add (cookie);
|
ret.add (cookie);
|
||||||
|
|
||||||
Cookie.TryCreateCookie (name, val, out cookie);
|
Cookie.TryCreate (name, val, out cookie);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cookie != null)
|
if (cookie != null)
|
||||||
|
Loading…
Reference in New Issue
Block a user