WSHttpSecurity.Transport Eigenschaft

Definition

Ruft ein Objekt ab, das die Transportsicherheitseinstellungen für diese Bindung enthält.

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

Eigenschaftswert

Die HttpTransportSecurity-Einstellung für diese Bindung.

Der Standardwert ist für ClientCredentialType auf Windows und für ProxyCredentialType auf None festgelegt.

Beispiele

Mit dem folgenden Code wird der Clientanmeldeinformationstyp auf Windows festgelegt.

// 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  

Hinweise

Sie können das von dieser Eigenschaft zurückgegebene Objekt verwenden, um die Transportsicherheitseinstellungen für die Bindung festzulegen.

Gilt für: