[Modify] Polish it

This commit is contained in:
sta 2019-10-07 21:12:12 +09:00
parent 897ecdaa32
commit 563bb8054a

View File

@ -2235,7 +2235,9 @@ namespace WebSocketSharp
/// <paramref name="content"/> is <see langword="null"/>. /// <paramref name="content"/> is <see langword="null"/>.
/// </para> /// </para>
/// </exception> /// </exception>
public static void WriteContent (this HttpListenerResponse response, byte[] content) public static void WriteContent (
this HttpListenerResponse response, byte[] content
)
{ {
if (response == null) if (response == null)
throw new ArgumentNullException ("response"); throw new ArgumentNullException ("response");
@ -2250,7 +2252,9 @@ namespace WebSocketSharp
} }
response.ContentLength64 = len; response.ContentLength64 = len;
var output = response.OutputStream; var output = response.OutputStream;
if (len <= Int32.MaxValue) if (len <= Int32.MaxValue)
output.Write (content, 0, (int) len); output.Write (content, 0, (int) len);
else else