Aracılığıyla paylaş


HttpTransportBindingElement.ProxyAuthenticationScheme Özellik

Tanım

BIR HTTP ara sunucusu tarafından işlenen istemci isteklerinin kimliğini doğrulamak için kullanılan kimlik doğrulama düzenini alır veya ayarlar.

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

Özellik Değeri

AuthenticationSchemes

Proxy'de AuthenticationSchemes istemci kimlik doğrulaması için kullanılan protokolleri belirten numaralandırma. Varsayılan değer: Anonymous.

Örnekler

Aşağıdaki örnek, bu özelliği özelliğinde ProxyAddress belirtilen proxy'ye istek gönderirken kullanılacak şekilde ayarlar.

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

Şunlara uygulanır