[Modify] Throw exception
This commit is contained in:
parent
8aedfa8cc8
commit
904bbdaa36
@ -996,7 +996,10 @@ namespace WebSocketSharp.Net
|
||||
|
||||
public static string HtmlEncode (string s)
|
||||
{
|
||||
if (s == null || s.Length == 0)
|
||||
if (s == null)
|
||||
throw new ArgumentNullException ("s");
|
||||
|
||||
if (s.Length == 0)
|
||||
return s;
|
||||
|
||||
var buff = new StringBuilder ();
|
||||
|
Loading…
Reference in New Issue
Block a user