From 1b4210af0fda1dcda7b28a597f09f11f264bb567 Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 22 Nov 2017 15:40:40 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/WebSocket.cs | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs index 59ae50b5..d2e5a399 100644 --- a/websocket-sharp/WebSocket.cs +++ b/websocket-sharp/WebSocket.cs @@ -2502,16 +2502,34 @@ namespace WebSocketSharp } /// - /// Accepts the WebSocket handshake request asynchronously. + /// Accepts the handshake request asynchronously. /// /// /// - /// This method does not wait for the accept to be complete. + /// This method does not wait for the accept process to be complete. /// /// - /// This method is not available in a client. + /// This method does nothing if the handshake request has already been + /// accepted. /// /// + /// + /// + /// This instance is a client. + /// + /// + /// -or- + /// + /// + /// The close process is in progress. + /// + /// + /// -or- + /// + /// + /// The connection has already been closed. + /// + /// public void AcceptAsync () { if (_client) {