diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs index bd6eb4f6..c27bdbe9 100644 --- a/websocket-sharp/WebSocket.cs +++ b/websocket-sharp/WebSocket.cs @@ -3690,27 +3690,31 @@ namespace WebSocketSharp /// Sets the credentials for the HTTP authentication (Basic/Digest). /// /// - /// - /// The credentials are initialized if is - /// or an empty string. - /// - /// - /// This method does nothing if the connection has already been - /// established or it is closing. - /// + /// This method does nothing if the connection has already been + /// established or it is closing. /// /// - /// A that represents the username associated with - /// the credentials. + /// + /// A that represents the username associated with + /// the credentials. + /// + /// + /// or an empty string if initializes + /// the credentials. + /// /// /// - /// A that represents the password for the username - /// associated with the credentials. + /// + /// A that represents the password for the username + /// associated with the credentials. + /// + /// + /// or an empty string if not necessary. + /// /// /// - /// true if this instance sends the credentials for the Basic - /// authentication with the first handshake request before receiving - /// an authentication challenge; otherwise, false. + /// true if sends the credentials for the Basic authentication in + /// advance with the first handshake request; otherwise, false. /// /// /// This instance is not a client.