[Modify] Edit it

This commit is contained in:
sta 2018-04-04 17:12:44 +09:00
parent da67449b4e
commit e631e21642

View File

@ -142,14 +142,18 @@ namespace WebSocketSharp.Net.WebSockets
public abstract Uri RequestUri { get; } public abstract Uri RequestUri { get; }
/// <summary> /// <summary>
/// Gets the value of the Sec-WebSocket-Key header included in the request. /// Gets the value of the Sec-WebSocket-Key header included in
/// the handshake request.
/// </summary> /// </summary>
/// <remarks>
/// This property provides a part of the information used by the server to prove that
/// it received a valid WebSocket handshake request.
/// </remarks>
/// <value> /// <value>
/// A <see cref="string"/> that represents the value of the Sec-WebSocket-Key header. /// <para>
/// A <see cref="string"/> that represents the value of
/// the Sec-WebSocket-Key header.
/// </para>
/// <para>
/// The value is used to prove that the server received
/// a valid WebSocket handshake request.
/// </para>
/// </value> /// </value>
public abstract string SecWebSocketKey { get; } public abstract string SecWebSocketKey { get; }