Compartilhar via


HttpTransportBindingElement.ProxyAuthenticationScheme Propriedade

Definição

Obtém ou define o esquema de autenticação usado para autenticar solicitações de cliente processadas por um 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

Valor da propriedade

AuthenticationSchemes

A enumeração AuthenticationSchemes que especifica os protocolos usados para a autenticação de cliente no proxy. O padrão é Anonymous.

Exemplos

O exemplo a seguir define essa propriedade a ser usada ao enviar solicitações para o proxy especificado na ProxyAddress propriedade.

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

Aplica-se a