From bbae618d7e918aae35251f7be60cfb408db127d0 Mon Sep 17 00:00:00 2001 From: sta Date: Tue, 30 May 2017 15:49:42 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/Ext.cs | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/websocket-sharp/Ext.cs b/websocket-sharp/Ext.cs index 8f081f70..495237eb 100644 --- a/websocket-sharp/Ext.cs +++ b/websocket-sharp/Ext.cs @@ -1303,28 +1303,36 @@ namespace WebSocketSharp } /// - /// Determines whether the specified is in - /// the allowable range of the WebSocket close status code. + /// Determines whether the specified is in the + /// range of the status code for the WebSocket connection close. /// /// - /// Unallowable ranges are the following: + /// + /// The ranges for the status code for the close are the following: + /// /// /// /// - /// Numbers in the range 0-999 are not used. + /// 1000-2999: These numbers are reserved for definition by + /// the WebSocket protocol. /// /// /// /// - /// Numbers greater than 4999 are out of the reserved - /// close status code ranges. + /// 3000-3999: These numbers are reserved for use by libraries, + /// frameworks, and applications. + /// + /// + /// + /// + /// 4000-4999: These numbers are reserved for private use. /// /// /// /// /// - /// true if is in the allowable - /// range of the close status code; otherwise, false. + /// true if is in the range of + /// the status code for the close; otherwise, false. /// /// /// A to test.