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. /// ///