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