From e631e2164227d7068ccd044440c47caa824c5635 Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 4 Apr 2018 17:12:44 +0900 Subject: [PATCH] [Modify] Edit it --- .../Net/WebSockets/WebSocketContext.cs | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/websocket-sharp/Net/WebSockets/WebSocketContext.cs b/websocket-sharp/Net/WebSockets/WebSocketContext.cs index ca654c8c..c5fae7c5 100644 --- a/websocket-sharp/Net/WebSockets/WebSocketContext.cs +++ b/websocket-sharp/Net/WebSockets/WebSocketContext.cs @@ -142,14 +142,18 @@ namespace WebSocketSharp.Net.WebSockets public abstract Uri RequestUri { get; } /// - /// 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. /// - /// - /// This property provides a part of the information used by the server to prove that - /// it received a valid WebSocket handshake request. - /// /// - /// A that represents the value of the Sec-WebSocket-Key header. + /// + /// A that represents the value of + /// the Sec-WebSocket-Key header. + /// + /// + /// The value is used to prove that the server received + /// a valid WebSocket handshake request. + /// /// public abstract string SecWebSocketKey { get; }