Compartilhar via


WSHttpSecurity.Transport Propriedade

Definição

Obtém um objeto que contém as configurações de segurança de nível de transporte para essa associação.

public:
 property System::ServiceModel::HttpTransportSecurity ^ Transport { System::ServiceModel::HttpTransportSecurity ^ get(); void set(System::ServiceModel::HttpTransportSecurity ^ value); };
public:
 property System::ServiceModel::HttpTransportSecurity ^ Transport { System::ServiceModel::HttpTransportSecurity ^ get(); };
public System.ServiceModel.HttpTransportSecurity Transport { get; set; }
public System.ServiceModel.HttpTransportSecurity Transport { get; }
member this.Transport : System.ServiceModel.HttpTransportSecurity with get, set
member this.Transport : System.ServiceModel.HttpTransportSecurity
Public Property Transport As HttpTransportSecurity
Public ReadOnly Property Transport As HttpTransportSecurity

Valor da propriedade

HttpTransportSecurity

O HttpTransportSecurity dessa associação.

O valor padrão inclui um ClientCredentialType de Windows e um ProxyCredentialType de None.

Exemplos

O código a seguir define o tipo de credencial do cliente como Windows.

// The code uses a shortcut to specify the security mode to Transport.  
WSHttpBinding b = new WSHttpBinding(SecurityMode.Transport);  
b.Security.Transport.ClientCredentialType = HttpClientCredentialType.Windows;  
' The code uses a shortcut to specify the security mode to Transport.  
Dim b As WSHttpBinding = new WSHttpBinding(SecurityMode.Transport)  
b.Security.Transport.ClientCredentialType = HttpClientCredentialType.Windows  

Comentários

Você pode usar o objeto retornado por essa propriedade para definir as configurações de segurança de transporte para a associação.

Aplica-se a