Fix a few for xml doc comment of CloseStatusCode.cs
This commit is contained in:
parent
35b8848d38
commit
de12277094
@ -31,7 +31,7 @@ using System;
|
|||||||
namespace WebSocketSharp
|
namespace WebSocketSharp
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Contains the values of the status code for the WebSocket connection closure.
|
/// Contains the values of the status code for the WebSocket connection close.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// <para>
|
/// <para>
|
||||||
@ -40,16 +40,16 @@ namespace WebSocketSharp
|
|||||||
/// of RFC 6455.
|
/// 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
|
||||||
/// an endpoint. It's designated for use in applications expecting a status code
|
/// by an endpoint. It's designated for use in applications expecting a status
|
||||||
/// to indicate that the connection was closed due to a system grounds.
|
/// code to indicate that the connection was closed due to the system grounds.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
public enum CloseStatusCode : ushort
|
public enum CloseStatusCode : ushort
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Equivalent to close status 1000.
|
/// Equivalent to close status 1000.
|
||||||
/// Indicates a normal closure.
|
/// Indicates a normal close.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Normal = 1000,
|
Normal = 1000,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -64,8 +64,8 @@ namespace WebSocketSharp
|
|||||||
ProtocolError = 1002,
|
ProtocolError = 1002,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Equivalent to close status 1003.
|
/// Equivalent to close status 1003.
|
||||||
/// Indicates that an endpoint is terminating the connection because it has received an
|
/// Indicates that an endpoint is terminating the connection because it has received
|
||||||
/// unacceptable type message.
|
/// an unacceptable type message.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
IncorrectData = 1003,
|
IncorrectData = 1003,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -85,33 +85,33 @@ namespace WebSocketSharp
|
|||||||
Abnormal = 1006,
|
Abnormal = 1006,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Equivalent to close status 1007.
|
/// Equivalent to close status 1007.
|
||||||
/// Indicates that an endpoint is terminating the connection because it has received a message
|
/// Indicates that an endpoint is terminating the connection because it has received
|
||||||
/// that contains a data that isn't consistent with the type of the message.
|
/// a message that contains a data that isn't consistent with the type of the message.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
InconsistentData = 1007,
|
InconsistentData = 1007,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Equivalent to close status 1008.
|
/// Equivalent to close status 1008.
|
||||||
/// Indicates that an endpoint is terminating the connection because it has received a message
|
/// Indicates that an endpoint is terminating the connection because it has received
|
||||||
/// that violates its policy.
|
/// a message that violates its policy.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
PolicyViolation = 1008,
|
PolicyViolation = 1008,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Equivalent to close status 1009.
|
/// Equivalent to close status 1009.
|
||||||
/// Indicates that an endpoint is terminating the connection because it has received a message
|
/// Indicates that an endpoint is terminating the connection because it has received
|
||||||
/// that is too big to process.
|
/// a message that is too big to process.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
TooBig = 1009,
|
TooBig = 1009,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Equivalent to close status 1010.
|
/// Equivalent to close status 1010.
|
||||||
/// Indicates that the client is terminating the connection because it has expected the server
|
/// Indicates that the client is terminating the connection because it has expected
|
||||||
/// to negotiate one or more extension, but the server didn't return them in the handshake
|
/// the server to negotiate one or more extension, but the server didn't return them
|
||||||
/// response.
|
/// in the handshake response.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
IgnoreExtension = 1010,
|
IgnoreExtension = 1010,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Equivalent to close status 1011.
|
/// Equivalent to close status 1011.
|
||||||
/// Indicates that the server is terminating the connection because it has encountered an
|
/// Indicates that the server is terminating the connection because it has encountered
|
||||||
/// unexpected condition that prevented it from fulfilling the request.
|
/// an unexpected condition that prevented it from fulfilling the request.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
ServerError = 1011,
|
ServerError = 1011,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
Loading…
Reference in New Issue
Block a user