From ea2066cfcf775d6515578b77e18e668b24c250f0 Mon Sep 17 00:00:00 2001 From: sta Date: Tue, 5 Aug 2014 20:08:13 +0900 Subject: [PATCH] Fix a few for SetHttpProxy method --- websocket-sharp/WebSocket.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/websocket-sharp/WebSocket.cs b/websocket-sharp/WebSocket.cs index c179f9cf..795bbf32 100644 --- a/websocket-sharp/WebSocket.cs +++ b/websocket-sharp/WebSocket.cs @@ -2123,8 +2123,9 @@ namespace WebSocketSharp } /// - /// Sets the HTTP Proxy server URL to connect through, and a pair of - /// and for the proxy server authentication (Basic/Digest). + /// Sets the HTTP Proxy server URL to connect through, and if necessary, a pair of + /// and for the proxy server + /// authentication (Basic/Digest). /// /// /// A that represents the HTTP Proxy server URL to connect through. @@ -2175,7 +2176,7 @@ namespace WebSocketSharp if (msg != null) { _logger.Error (msg); - error (msg); + error ("An error has occurred while setting the HTTP Proxy."); return; }