[Modify] Polish it

This commit is contained in:
sta 2020-01-27 21:13:21 +09:00
parent 59f54c37af
commit 8f9d7ef2a3

View File

@ -273,7 +273,12 @@ namespace WebSocketSharp.Net
}
public override IAsyncResult BeginWrite (
byte[] buffer, int offset, int count, AsyncCallback callback, object state)
byte[] buffer,
int offset,
int count,
AsyncCallback callback,
object state
)
{
if (_disposed)
throw new ObjectDisposedException (GetType ().ToString ());