Sdílet prostřednictvím


WSHttpSecurity.Transport Vlastnost

Definice

Získá objekt, který obsahuje nastavení zabezpečení na úrovni přenosu pro tuto vazbu.

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

Hodnota vlastnosti

Pro HttpTransportSecurity tuto vazbu.

Výchozí hodnota zahrnuje ClientCredentialType hodnoty Windows a ProxyCredentialType a .None

Příklady

Následující kód nastaví typ přihlašovacích údajů klienta na 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  

Poznámky

Objekt vrácený touto vlastností můžete použít k nastavení zabezpečení přenosu pro vazbu.

Platí pro