From 1b52a2129da979de98898bd3495ccae568a0fa6b Mon Sep 17 00:00:00 2001 From: sta Date: Fri, 18 Nov 2016 16:50:39 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/WebSocket.cs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs index 346f8e97..ed86c0f8 100644 --- a/websocket-sharp/WebSocket.cs +++ b/websocket-sharp/WebSocket.cs @@ -2715,11 +2715,20 @@ namespace WebSocketSharp } /// - /// Sends text using the WebSocket connection. + /// Sends the specified using the WebSocket connection. /// /// /// A that represents the text data to send. /// + /// + /// The current state of the connection is not Open. + /// + /// + /// is . + /// + /// + /// cannot be UTF8 encoded. + /// public void Send (string data) { if (_readyState != WebSocketState.Open) {