[Modify] Throw exception

master
sta 7 years ago
parent b9f591512c
commit 0c8d458521

@ -901,6 +901,9 @@ namespace WebSocketSharp.Net
/// </param>
public static void HtmlDecode (string s, TextWriter output)
{
if (s == null)
throw new ArgumentNullException ("s");
if (output == null)
throw new ArgumentNullException ("output");

Loading…
Cancel
Save