[Modify] Polish it

This commit is contained in:
sta 2017-01-10 17:28:29 +09:00
parent 46bc283d57
commit 5e0f3532ce

View File

@ -681,7 +681,11 @@ Extended Payload Length: {7}
} }
internal static void ReadFrameAsync ( internal static void ReadFrameAsync (
Stream stream, bool unmask, Action<WebSocketFrame> completed, Action<Exception> error) Stream stream,
bool unmask,
Action<WebSocketFrame> completed,
Action<Exception> error
)
{ {
readHeaderAsync ( readHeaderAsync (
stream, stream,
@ -703,10 +707,14 @@ Extended Payload Length: {7}
completed (frame3); completed (frame3);
}, },
error), error
error), ),
error), error
error); ),
error
),
error
);
} }
internal void Unmask () internal void Unmask ()