Udostępnij za pośrednictwem


HttpTransportBindingElement.ProxyAuthenticationScheme Właściwość

Definicja

Pobiera lub ustawia schemat uwierzytelniania używany do uwierzytelniania żądań klientów przetwarzanych przez serwer proxy HTTP.

public:
 property System::Net::AuthenticationSchemes ProxyAuthenticationScheme { System::Net::AuthenticationSchemes get(); void set(System::Net::AuthenticationSchemes value); };
public System.Net.AuthenticationSchemes ProxyAuthenticationScheme { get; set; }
member this.ProxyAuthenticationScheme : System.Net.AuthenticationSchemes with get, set
Public Property ProxyAuthenticationScheme As AuthenticationSchemes

Wartość właściwości

AuthenticationSchemes

Wyliczenie AuthenticationSchemes określające protokoły używane do uwierzytelniania klienta na serwerze proxy. Wartość domyślna to Anonymous.

Przykłady

Poniższy przykład ustawia tę właściwość do użycia podczas wysyłania żądań do serwera proxy określonego ProxyAddress we właściwości.

HttpTransportBindingElement httpBinding = new HttpTransportBindingElement();  
httpBinding.ProxyAddress = new Uri(http://proxyserver);  
httpBinding.ProxyAuthenticationScheme = AuthenticationSchemes.Digest;  

Dotyczy