Removed the ProxyAuthenticationChallenge property from the HttpResponse class

This commit is contained in:
sta 2014-12-25 14:26:16 +09:00
parent 4042922810
commit 93137666f7

View File

@ -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;