diff --git a/websocket-sharp/Server/WebSocketBehavior.cs b/websocket-sharp/Server/WebSocketBehavior.cs index 653f978a..aab21c8f 100644 --- a/websocket-sharp/Server/WebSocketBehavior.cs +++ b/websocket-sharp/Server/WebSocketBehavior.cs @@ -116,18 +116,24 @@ namespace WebSocketSharp.Server /// /// Gets or sets the delegate called to validate the HTTP cookies 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<CookieCollection, CookieCollection, bool> delegate that references - /// the method(s) used to validate the cookies. 1st passed to - /// this delegate contains the cookies to validate if any. 2nd - /// passed to this delegate receives the cookies to send to the client. + /// the method(s) used to validate the cookies. + /// + /// + /// 1st parameter passed to this delegate contains + /// the cookies to validate if any. + /// + /// + /// 2nd parameter passed to this delegate receives + /// the cookies to send to the client. /// /// /// This delegate should return true if the cookies are valid.