Condividi tramite


HttpResponseHeaderCollection.ProxyAuthenticate Proprietà

Definizione

Ottiene l'oggetto HttpChallengeHeaderValueCollection di oggetti HttpChallengeHeaderValue che rappresentano il valore di un'intestazione HTTP Proxy-Authenticate in una risposta HTTP.

public:
 property HttpChallengeHeaderValueCollection ^ ProxyAuthenticate { HttpChallengeHeaderValueCollection ^ get(); };
HttpChallengeHeaderValueCollection ProxyAuthenticate();
public HttpChallengeHeaderValueCollection ProxyAuthenticate { get; }
var httpChallengeHeaderValueCollection = httpResponseHeaderCollection.proxyAuthenticate;
Public ReadOnly Property ProxyAuthenticate As HttpChallengeHeaderValueCollection

Valore della proprietà

Raccolta di oggetti HttpChallengeHeaderValue che rappresentano il valore di un'intestazione HTTP Proxy-Authenticate in una risposta HTTP. Una raccolta vuota indica che l'intestazione è assente.

Commenti

Il codice di esempio seguente illustra un metodo per ottenere e impostare l'intestazione Proxy-Authenticate su un oggetto HttpResponseMessage usando la proprietà ProxyAuthenticate nell'oggetto HttpResponseHeaderCollection .

// Proxy-Authenticate: Basic
// HttpChallengeHeaderValueCollection
// HttpChallengeHeaderValue has Scheme and Token (both strings) + Parameters
// Parameters is an IList<HttpNameValueHeaderValue>
// HttpNameValueHeaderValue has Name and Value, both strings
    void DemoProxyAuthenticate(HttpResponseMessage response) {
        var h = response.Headers;
        h.ProxyAuthenticate.TryParseAdd("Basic");
        h.ProxyAuthenticate.Add(new HttpChallengeHeaderValue("digest", "token"));

        var header = h.ProxyAuthenticate;
        uiLog.Text += "\nPROXY AUTHENTICATE HEADER\n";
        foreach (var item in header) {
            // Parameters is an IList<HttpNameValueHeaderValue> of Name/Value strings
            var parameterString = "";
            foreach (var parameter in item.Parameters) {
                parameterString += string.Format("[{0}={1}] ", parameter.Name, parameter.Value);
            }
            if (parameterString == "") {
                parameterString = "(no parameters)";
            }
            uiLog.Text += string.Format("Scheme: {0} Token: {1} Parameters: {2} ToString(): {3}\n", item.Scheme, item.Token, parameterString, item.ToString());
        }
        uiLog.Text += String.Format("ProxyAuthenticate: {0}\n", header.ToString());
    }

Si applica a

Vedi anche