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.
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.
@ -510,7 +510,7 @@ Could you access to [http://localhost:4649](http://localhost:4649) to do **WebSo
## 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 API][api]**

View File

@ -31,13 +31,13 @@ using System;
namespace WebSocketSharp
{
/// <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>
/// <remarks>
/// <para>
/// The status codes for the WebSocket connection closure are defined in
/// <see href="http://tools.ietf.org/html/rfc6455#section-7.4.1">RFC 6455</see>
/// for the WebSocket protocol.
/// The values of the status code are defined in
/// <see href="http://tools.ietf.org/html/rfc6455#section-7.4">Section 7.4</see>
/// of RFC 6455.
/// </para>
/// <para>
/// "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
{
/// <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.
/// </summary>
/// <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
/// Extensions for WebSocket</see>.
/// </remarks>

View File

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

View File

@ -34,7 +34,7 @@ namespace WebSocketSharp
/// Contains the values of the state of the WebSocket connection.
/// </summary>
/// <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
/// API</see>.
/// </remarks>