다음을 통해 공유


WSHttpSecurity.Transport 속성

정의

이 바인딩의 전송 수준 보안 설정이 포함된 개체를 가져옵니다.

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

속성 값

HttpTransportSecurity

이 바인딩의 HttpTransportSecurity입니다.

기본값에는 ClientCredentialTypeWindowsProxyCredentialTypeNone이 포함됩니다.

예제

다음 코드에서는 클라이언트 자격 증명 형식을 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  

설명

이 속성에서 반환하는 개체를 사용하여 바인딩의 전송 보안 설정을 지정할 수 있습니다.

적용 대상