Fix a few

This commit is contained in:
sta 2014-03-06 17:42:12 +09:00
parent 0a9010df86
commit 12efc99805
5 changed files with 10 additions and 10 deletions

View File

@ -313,7 +313,7 @@ public class Chat : WebSocketService
If you override the `WebSocketService.OnMessage (MessageEventArgs)` method, it's called when the `OnMessage` event of the `WebSocket` used by the current session in the WebSocket service occurs. If you override the `WebSocketService.OnMessage (MessageEventArgs)` method, it's called when the `OnMessage` event of the `WebSocket` used by the current session in the WebSocket service occurs.
And if you override the `WebSocketService.OnOpen ()`, `WebSocketService.OnError (ErrorEventArgs)`, and `WebSocketService.OnClose (CloseEventArgs)` methods, each of them is called when each event of the `WebSocket` (the `OnOpen`, `OnError`, and `OnClose`) occurs. And if you override the `WebSocketService.OnOpen ()`, `WebSocketService.OnError (ErrorEventArgs)`, and `WebSocketService.OnClose (CloseEventArgs)` methods, each of them is called when each event of the `WebSocket` (the `OnOpen`, `OnError`, and `OnClose` events) occurs.
The `WebSocketService.Send` method sends a data to the client on the current session in the WebSocket service. The `WebSocketService.Send` method sends a data to the client on the current session in the WebSocket service.
@ -510,7 +510,7 @@ Could you access to [http://localhost:4649](http://localhost:4649) to do **WebSo
## Supported WebSocket Specifications ## ## Supported WebSocket Specifications ##
websocket-sharp supports **[RFC 6455][rfc6455]** and is based on the following WebSocket references. websocket-sharp supports **[RFC 6455][rfc6455]**, and it's based on the following WebSocket references.
- **[The WebSocket Protocol][rfc6455]** - **[The WebSocket Protocol][rfc6455]**
- **[The WebSocket API][api]** - **[The WebSocket API][api]**

View File

@ -31,13 +31,13 @@ using System;
namespace WebSocketSharp namespace WebSocketSharp
{ {
/// <summary> /// <summary>
/// Contains the values of the status codes for the WebSocket connection closure. /// Contains the values of the status code for the WebSocket connection closure.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// <para> /// <para>
/// The status codes for the WebSocket connection closure are defined in /// The values of the status code are defined in
/// <see href="http://tools.ietf.org/html/rfc6455#section-7.4.1">RFC 6455</see> /// <see href="http://tools.ietf.org/html/rfc6455#section-7.4">Section 7.4</see>
/// for the WebSocket protocol. /// of RFC 6455.
/// </para> /// </para>
/// <para> /// <para>
/// "Reserved value" must not be set as a status code in a close control frame by /// "Reserved value" must not be set as a status code in a close control frame by

View File

@ -31,11 +31,11 @@ using System;
namespace WebSocketSharp namespace WebSocketSharp
{ {
/// <summary> /// <summary>
/// Contains the values of the compression methods used to compress the message on the WebSocket /// Contains the values of the compression method used to compress the message on the WebSocket
/// connection. /// connection.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// The compression methods are defined in /// The values of the compression method are defined in
/// <see href="http://tools.ietf.org/html/draft-ietf-hybi-permessage-compression-09">Compression /// <see href="http://tools.ietf.org/html/draft-ietf-hybi-permessage-compression-09">Compression
/// Extensions for WebSocket</see>. /// Extensions for WebSocket</see>.
/// </remarks> /// </remarks>

View File

@ -31,7 +31,7 @@ using System;
namespace WebSocketSharp namespace WebSocketSharp
{ {
/// <summary> /// <summary>
/// Contains the values of the logging levels. /// Contains the values of the logging level.
/// </summary> /// </summary>
public enum LogLevel public enum LogLevel
{ {

View File

@ -34,7 +34,7 @@ namespace WebSocketSharp
/// Contains the values of the state of the WebSocket connection. /// Contains the values of the state of the WebSocket connection.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// The state of the WebSocket connection is defined in /// The values of the state are defined in
/// <see href="http://www.w3.org/TR/websockets/#dom-websocket-readystate">The WebSocket /// <see href="http://www.w3.org/TR/websockets/#dom-websocket-readystate">The WebSocket
/// API</see>. /// API</see>.
/// </remarks> /// </remarks>