From 778d01b3d71b134a5931e1db0ec44bdf8145b522 Mon Sep 17 00:00:00 2001 From: sta Date: Tue, 23 Dec 2014 15:57:01 +0900 Subject: [PATCH] Removed the AuthenticationChallenge 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 ef15a099..bec42890 100644 --- a/websocket-sharp/HttpResponse.cs +++ b/websocket-sharp/HttpResponse.cs @@ -71,15 +71,6 @@ namespace WebSocketSharp #region Public Properties - public AuthenticationChallenge AuthenticationChallenge { - get { - var chal = Headers["WWW-Authenticate"]; - return chal != null && chal.Length > 0 - ? AuthenticationChallenge.Parse (chal) - : null; - } - } - public CookieCollection Cookies { get { return Headers.GetCookies (true);