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