diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs index f24d65e0..a617422c 100644 --- a/websocket-sharp/WebSocket.cs +++ b/websocket-sharp/WebSocket.cs @@ -417,13 +417,25 @@ namespace WebSocketSharp } /// - /// Gets or sets a value indicating whether the redirects - /// the handshake request to the new URL located in the handshake response. + /// Gets or sets a value indicating whether the URL redirection for + /// the handshake request is allowed. /// + /// + /// The set operation does nothing if the connection has already been + /// established or it is closing. + /// /// - /// true if the redirects the handshake request to - /// the new URL; otherwise, false. The default value is false. + /// + /// true if the URL redirection for the handshake request is + /// allowed; otherwise, false. + /// + /// + /// The default value is false. + /// /// + /// + /// The set operation cannot be used by servers. + /// public bool EnableRedirection { get { return _enableRedirection;