[Modify] Throw exception
This commit is contained in:
parent
55d848a8bf
commit
680404686c
@ -1305,7 +1305,10 @@ namespace WebSocketSharp.Net
|
||||
|
||||
public static string UrlPathEncode (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