BasicHttpSecurity.Transport Property

Definition

Gets the transport-level security settings for a basicHttpBinding binding.

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

Property Value

The transport-level security settings for a basicHttpBinding binding.

Examples

HttpTransportSecurity transSec = security.Transport;
Dim transSec As HttpTransportSecurity = security.Transport

Remarks

The HttpTransportSecurity object returned by this property contains properties that control authentication parameters for the HTTP transport.

Applies to