- Closes the connection and releases all associated resources after sends a Close control frame. + Closes the WebSocket connection and releases all associated resources.
- Closes the connection and releases all associated resources after sends a Close control frame. + Closes the WebSocket connection with the specified code + and releases all associated resources.
- Closes the connection and releases all associated resources after sends a Close control frame. + Closes the WebSocket connection with the specified code + and releases all associated resources.
- Closes the connection and releases all associated resources after sends a Close control frame. + Closes the WebSocket connection with the specified code and reason, + and releases all associated resources.
- Closes the connection and releases all associated resources after sends a Close control frame. + Closes the WebSocket connection with the specified code and reason, + and releases all associated resources.
- Closes the connection and releases all associated resources after sends a Close control frame. + Closes the WebSocket connection and releases all associated resources.
- Sends a Ping frame using the connection. + Pings using the WebSocket connection.
- Sends a Ping frame with a message using the connection. + Pings with the specified message using the WebSocket connection.
- Sends a binary data using the connection. + Sends a binary data using the WebSocket connection.
- Sends a binary data using the connection. + Sends a binary data using the WebSocket connection.
- Sends a text data using the connection. + Sends a text data using the WebSocket connection.
- Sends a binary data asynchronously using the connection. + Sends a binary data asynchronously using the WebSocket connection.
- Sends a binary data asynchronously using the connection. + Sends a binary data asynchronously using the WebSocket connection.
- Sends a text data asynchronously using the connection. + Sends a text data asynchronously using the WebSocket connection.
- Initializes a new instance of the WebSocketSharp.WebSocket class with the specified WebSocket URL, OnOpen, OnMessage, OnError, OnClose event handlers and subprotocols. + Initializes a new instance of the WebSocketSharp.WebSocket class with the specified WebSocket URL, + OnOpen, OnMessage, OnError, OnClose event handlers and subprotocols.
Syntax
public WebSocket (string url, EventHandler onOpen, EventHandler<MessageEventArgs> onMessage, EventHandler<ErrorEventArgs> onError, EventHandler<CloseEventArgs> onClose, params string[] protocols)@@ -712,31 +717,31 @@ url- A string that contains the WebSocket URL. + A string that contains a WebSocket URL. onOpen - An OnOpen event handler. + An WebSocket.OnOpen event handler. onMessage - An OnMessage event handler. + An WebSocket.OnMessage event handler. onError - An OnError event handler. + An WebSocket.OnError event handler. onClose - An OnClose event handler. + An WebSocket.OnClose event handler. protocols @@ -773,8 +778,9 @@
- Closes the connection and releases all associated resources after sends a Close control frame. + Closes the WebSocket connection and releases all associated resources.
Syntax
public void Close ()@@ -799,7 +805,8 @@Close Method
- Closes the connection and releases all associated resources after sends a Close control frame. + Closes the WebSocket connection with the specified code + and releases all associated resources.
Syntax
@@ -810,7 +817,7 @@ code
@@ -853,7 +862,8 @@- Closes the connection and releases all associated resources after sends a Close control frame. + Closes the WebSocket connection with the specified code + and releases all associated resources.
Syntax
public void Close (CloseStatusCode code)@@ -837,7 +845,8 @@ code- A WebSocketSharp.CloseStatusCode that contains a status code indicating a reason for closure. + One of the WebSocketSharp.CloseStatusCode values that contains a status code + indicating the reason for closure.
@@ -886,7 +896,8 @@- Closes the connection and releases all associated resources after sends a Close control frame. + Closes the WebSocket connection with the specified code and reason, + and releases all associated resources.
Syntax
@@ -864,13 +874,13 @@ code- A ushort that contains a status code indicating a reason for closure. + A ushort that contains a status code indicating the reason for closure. reason - A string that contains a reason for closure. + A string that contains the reason for closure.
@@ -935,16 +947,13 @@- Closes the connection and releases all associated resources after sends a Close control frame. + Closes the WebSocket connection with the specified code and reason, + and releases all associated resources.
Syntax
@@ -897,13 +908,14 @@ code- A WebSocketSharp.CloseStatusCode that contains a status code indicating a reason for closure. + One of the WebSocketSharp.CloseStatusCode values that contains a status code + indicating the reason for closure. reason - A string that contains a reason for closure. + A string that contains the reason for closure.
- Closes the connection and releases all associated resources after sends a Close control frame. + Closes the WebSocket connection and releases all associated resources.
Syntax
public void Dispose ()Remarks
- Call WebSocket.Dispose when you are finished using the WebSocketSharp.WebSocket. The - WebSocket.Dispose method leaves the WebSocketSharp.WebSocket in an unusable state. After - calling WebSocket.Dispose, you must release all references to the WebSocketSharp.WebSocket so - the garbage collector can reclaim the memory that the WebSocketSharp.WebSocket was occupying. + This method closes the WebSocket connection with the CloseStatusCode.AWAY.Requirements
@@ -1014,7 +1023,7 @@OnClose Event
- Occurs when the WebSocket receives a Close frame or the Close method is called. + Occurs when the WebSocketSharp.WebSocket receives a Close frame or the Close method is called.
Syntax
public event EventHandler<CloseEventArgs> OnClose@@ -1030,7 +1039,7 @@OnError Event
- Occurs when the WebSocket gets an error. + Occurs when the WebSocketSharp.WebSocket gets an error.
Syntax
public event EventHandler<ErrorEventArgs> OnError@@ -1046,7 +1055,7 @@OnMessage Event
- Occurs when the WebSocket receives a data frame. + Occurs when the WebSocketSharp.WebSocket receives a data frame.
Syntax
public event EventHandler<MessageEventArgs> OnMessage@@ -1078,13 +1087,13 @@Ping Method
- Sends a Ping frame using the connection. + Pings using the WebSocket connection.
Syntax
public bool Ping ()Returns
- true if the WebSocket receives a Pong frame in a time; otherwise, false. + true if the WebSocketSharp.WebSocket receives a Pong in a time; otherwise, false.Remarks
@@ -1098,7 +1107,7 @@Ping Method
- Sends a Ping frame with a message using the connection. + Pings with the specified message using the WebSocket connection.
Syntax
@@ -1109,13 +1118,13 @@ message- A string that contains the message to be sent. + A string that contains a message. Returns
- true if the WebSocket receives a Pong frame in a time; otherwise, false. + true if the WebSocketSharp.WebSocket receives a Pong in a time; otherwise, false.Remarks
@@ -1169,7 +1178,7 @@Send Method
- Sends a binary data using the connection. + Sends a binary data using the WebSocket connection.
Syntax
@@ -1196,7 +1205,7 @@Send Method
- Sends a binary data using the connection. + Sends a binary data using the WebSocket connection.
Syntax
public void Send (System.IO.FileInfo file)@@ -1223,7 +1232,7 @@Send Method
- Sends a text data using the connection. + Sends a text data using the WebSocket connection.
Syntax
@@ -1250,7 +1259,7 @@SendAsync Method
@@ -1283,7 +1293,7 @@- Sends a binary data asynchronously using the connection. + Sends a binary data asynchronously using the WebSocket connection.
Syntax
@@ -1267,7 +1276,8 @@ completed- An Action delegate that contains the method(s) that is called when an asynchronous operation completes. + An Action delegate that references the method(s) called when + the asynchronous operation completes. SendAsync Method
@@ -1316,7 +1327,7 @@- Sends a binary data asynchronously using the connection. + Sends a binary data asynchronously using the WebSocket connection.
Syntax
@@ -1300,7 +1310,8 @@ completed- An Action delegate that contains the method(s) that is called when an asynchronous operation completes. + An Action delegate that references the method(s) called when + the asynchronous operation completes. SendAsync Method
diff --git a/websocket-sharp/doc/mdoc/WebSocketSharp/WebSocket.xml b/websocket-sharp/doc/mdoc/WebSocketSharp/WebSocket.xml index a701848f..b4033c83 100644 --- a/websocket-sharp/doc/mdoc/WebSocketSharp/WebSocket.xml +++ b/websocket-sharp/doc/mdoc/WebSocketSharp/WebSocket.xml @@ -37,7 +37,7 @@- Sends a text data asynchronously using the connection. + Sends a text data asynchronously using the WebSocket connection.
Syntax
@@ -1333,7 +1344,8 @@ completed- An Action delegate that contains the method(s) that is called when an asynchronous operation completes. + An Action delegate that references the method(s) called when + the asynchronous operation completes. - A @@ -478,7 +485,7 @@ Athat contains the WebSocket URL. + A that contains a WebSocket URL. An array of that contains the WebSocket subprotocols if any. @@ -45,7 +45,7 @@ Initializes a new instance of the -class with the specified WebSocket URL and subprotocols. To be added. +@@ -74,27 +74,31 @@ is . - A @@ -458,7 +465,7 @@ Athat contains the WebSocket URL. + A that contains a WebSocket URL. - An OnOpen event handler. + An event handler. - An OnMessage event handler. + An event handler. - An OnError event handler. + An event handler. - An OnClose event handler. + An event handler. An array of that contains the WebSocket subprotocols if any. - Initializes a new instance of the -class with the specified WebSocket URL, OnOpen, OnMessage, OnError, OnClose event handlers and subprotocols. + Initializes a new instance of the class with the specified WebSocket URL, + OnOpen, OnMessage, OnError, OnClose event handlers and subprotocols. To be added. ++ This constructor initializes a new instance of the class and + establishes a WebSocket connection. + @@ -113,7 +117,7 @@ is . @@ -130,10 +134,11 @@ - Closes the connection and releases all associated resources after sends a Close control frame. + Closes the WebSocket connection and releases all associated resources. To be added. - A @@ -150,10 +155,12 @@that contains a status code indicating a reason for closure. + A that contains a status code indicating the reason for closure. - Closes the connection and releases all associated resources after sends a Close control frame. + Closes the WebSocket connection with the specified + and releases all associated resources. To be added. - A @@ -171,13 +178,14 @@that contains a status code indicating a reason for closure. + One of the values that contains a status code + indicating the reason for closure. - Closes the connection and releases all associated resources after sends a Close control frame. + Closes the WebSocket connection with the specified + and releases all associated resources. To be added. - A @@ -195,13 +203,15 @@that contains a status code indicating a reason for closure. + A that contains a status code indicating the reason for closure. - A that contains a reason for closure. + A that contains the reason for closure. - Closes the connection and releases all associated resources after sends a Close control frame. + Closes the WebSocket connection with the specified and , + and releases all associated resources. To be added. - A @@ -231,13 +241,10 @@that contains a status code indicating a reason for closure. + One of the values that contains a status code + indicating the reason for closure. - A that contains a reason for closure. + A that contains the reason for closure. - Closes the connection and releases all associated resources after sends a Close control frame. + Closes the WebSocket connection with the specified and , + and releases all associated resources. To be added. @@ -301,7 +308,7 @@ - Closes the connection and releases all associated resources after sends a Close control frame. + Closes the WebSocket connection and releases all associated resources. - Call when you are finished using the . The - method leaves the in an unusable state. After - calling , you must release all references to the so - the garbage collector can reclaim the memory that the was occupying. + This method closes the WebSocket connection with the . @@ -315,7 +322,7 @@ - Occurs when the WebSocket receives a Close frame or the Close method is called. + Occurs when the receives a Close frame or the Close method is called. To be added. @@ -329,7 +336,7 @@ - Occurs when the WebSocket gets an error. + Occurs when the gets an error. To be added. @@ -358,10 +365,10 @@ - Occurs when the WebSocket receives a data frame. + Occurs when the receives a data frame. To be added. @@ -378,13 +385,13 @@ - Sends a Ping frame using the connection. + Pings using the WebSocket connection. - true if the WebSocket receives a Pong frame in a time; otherwise,false . +true if thereceives a Pong in a time; otherwise, false .To be added. - A @@ -438,7 +445,7 @@ An array ofthat contains the message to be sent. + A that contains a message. - Sends a Ping frame with a message using the connection. + Pings with the specified using the WebSocket connection. - true if the WebSocket receives a Pong frame in a time; otherwise,false . +true if thereceives a Pong in a time; otherwise, false .To be added. that contains a binary data to send. - Sends a binary data using the connection. + Sends a binary using the WebSocket connection. To be added. that contains a binary data to send. - Sends a binary data using the connection. + Sends a binary data using the WebSocket connection. To be added. that contains a text data to send. - Sends a text data using the connection. + Sends a text using the WebSocket connection. To be added. @@ -499,10 +506,11 @@ An array ofthat contains a binary data to send. - An delegate that contains the method(s) that is called when an asynchronous operation completes. + An delegate that references the method(s) called when + the asynchronous operation completes. - Sends a binary data asynchronously using the connection. + Sends a binary asynchronously using the WebSocket connection. To be added. @@ -523,10 +531,11 @@ Athat contains a binary data to send. - An delegate that contains the method(s) that is called when an asynchronous operation completes. + An delegate that references the method(s) called when + the asynchronous operation completes. - Sends a binary data asynchronously using the connection. + Sends a binary data asynchronously using the WebSocket connection. To be added. @@ -547,10 +556,11 @@ Athat contains a text data to send. - An delegate that contains the method(s) that is called when an asynchronous operation completes. + An delegate that references the method(s) called when + the asynchronous operation completes. - Sends a text data asynchronously using the connection. + Sends a text asynchronously using the WebSocket connection. To be added. diff --git a/websocket-sharp/doc/mdoc/index.xml b/websocket-sharp/doc/mdoc/index.xml index 560a6979..59088694 100644 --- a/websocket-sharp/doc/mdoc/index.xml +++ b/websocket-sharp/doc/mdoc/index.xml @@ -1,6 +1,6 @@- + [00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 00 24 00 00 52 53 41 31 00 04 00 00 11 00 00 00 29 17 fb 89 fe c3 91 f7 2b cb 8b e2 61 d2 3f 05 93 6d 65 a8 9e 63 72 a6 f5 d5 2c f2 9d 20 fa 0b c0 70 6a f6 88 7e 8b 90 3f 39 f5 76 c8 48 e0 bb 7b b2 7b ed d3 10 a7 1a 0f 70 98 0f 7f f4 4b 53 09 d2 a5 ef 36 c3 56 b4 aa f0 91 72 63 25 07 89 e0 93 3e 3f 2e f2 b9 73 0e 12 15 5d 43 56 c3 f4 70 a5 89 fe f7 f6 ac 3e 77 c2 d8 d0 84 91 f4 0c d1 f3 8e dc c3 c3 b8 38 3d 0c bf 17 de 20 78 c1 ] diff --git a/websocket-sharp/websocket-sharp.pidb b/websocket-sharp/websocket-sharp.pidb index 784628e3..d0f003d7 100644 Binary files a/websocket-sharp/websocket-sharp.pidb and b/websocket-sharp/websocket-sharp.pidb differ