[Modify] Add it
This commit is contained in:
parent
0b7c2208fa
commit
b7b0db9f19
@ -393,6 +393,11 @@ namespace WebSocketSharp.Net
|
|||||||
_entities.Add ("euro", '\u20AC');
|
_entities.Add ("euro", '\u20AC');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static bool isNumeric (char c)
|
||||||
|
{
|
||||||
|
return c >= '0' && c <= '9';
|
||||||
|
}
|
||||||
|
|
||||||
private static bool notEncoded (char c)
|
private static bool notEncoded (char c)
|
||||||
{
|
{
|
||||||
return c == '!' ||
|
return c == '!' ||
|
||||||
|
Loading…
Reference in New Issue
Block a user