[Modify] Add it
This commit is contained in:
@@ -425,6 +425,14 @@ namespace WebSocketSharp.Net
|
|||||||
|| c == '~';
|
|| c == '~';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static bool isUnreservedInRfc3986 (char c)
|
||||||
|
{
|
||||||
|
return c == '-'
|
||||||
|
|| c == '.'
|
||||||
|
|| c == '_'
|
||||||
|
|| c == '~';
|
||||||
|
}
|
||||||
|
|
||||||
private static bool notEncoded (char c)
|
private static bool notEncoded (char c)
|
||||||
{
|
{
|
||||||
return c == '!' ||
|
return c == '!' ||
|
||||||
|
Reference in New Issue
Block a user