From 93137666f71b6b2a47918998dd8cfe2a10a1bc70 Mon Sep 17 00:00:00 2001 From: sta Date: Thu, 25 Dec 2014 14:26:16 +0900 Subject: [PATCH] Removed the ProxyAuthenticationChallenge property from the HttpResponse class --- websocket-sharp/HttpResponse.cs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/websocket-sharp/HttpResponse.cs b/websocket-sharp/HttpResponse.cs index bec42890..19315a3f 100644 --- a/websocket-sharp/HttpResponse.cs +++ b/websocket-sharp/HttpResponse.cs @@ -111,15 +111,6 @@ namespace WebSocketSharp } } - public AuthenticationChallenge ProxyAuthenticationChallenge { - get { - var chal = Headers["Proxy-Authenticate"]; - return chal != null && chal.Length > 0 - ? AuthenticationChallenge.Parse (chal) - : null; - } - } - public string Reason { get { return _reason;