From e7bb146394e378b970befe094f5aef227d633f14 Mon Sep 17 00:00:00 2001 From: sta Date: Sat, 29 Nov 2014 14:22:47 +0900 Subject: [PATCH] Modified a few for 'WebSocket.OnClose Event' --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ea68c15..18a73790 100644 --- a/README.md +++ b/README.md @@ -186,7 +186,7 @@ ws.OnClose += (sender, e) => { `e` has passed as a `WebSocketSharp.CloseEventArgs`. -`e.Code` property returns a `ushort` that represents the status code indicating the reason for the close, and `e.Reason` property returns a `string` that represents the reason for the close. So you should use them to get the reason for the close. +`e.Code` property returns a `ushort` that represents the status code indicating the reason for the close, and `e.Reason` property returns a `string` that represents the reason for the close. #### Step 4 ####