From f7ce165e7b89cfd358dded17289e3fbbf890d70b Mon Sep 17 00:00:00 2001 From: sta Date: Sun, 7 Feb 2016 16:17:22 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/Server/WebSocketBehavior.cs | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/websocket-sharp/Server/WebSocketBehavior.cs b/websocket-sharp/Server/WebSocketBehavior.cs index aab21c8f..d99bc4c5 100644 --- a/websocket-sharp/Server/WebSocketBehavior.cs +++ b/websocket-sharp/Server/WebSocketBehavior.cs @@ -208,16 +208,19 @@ namespace WebSocketSharp.Server /// /// Gets or sets the delegate called to validate the Origin header included in - /// a connection request to the WebSocket service. + /// a handshake request to the WebSocket service. /// /// /// This delegate is called when the used in a session validates - /// the connection request. + /// the handshake request. /// /// /// - /// A Func<string, bool> delegate that references the method(s) used to validate - /// the origin header. A passed to this delegate represents the value of + /// A Func<string, bool> delegate that references the method(s) used to + /// validate the origin header. + /// + /// + /// parameter passed to this delegate represents the value of /// the origin header to validate if any. /// ///