[Modify] Add it

This commit is contained in:
sta 2018-09-13 20:23:54 +09:00
parent 03f85bc91d
commit 58e5ef372a

View File

@ -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 == '!' ||