다음을 통해 공유


HttpTransportSecurity.ClientCredentialType 속성

정의

인증에 사용되는 클라이언트 자격 증명의 형식을 가져오거나 설정합니다.

public:
 property System::ServiceModel::HttpClientCredentialType ClientCredentialType { System::ServiceModel::HttpClientCredentialType get(); void set(System::ServiceModel::HttpClientCredentialType value); };
public System.ServiceModel.HttpClientCredentialType ClientCredentialType { get; set; }
member this.ClientCredentialType : System.ServiceModel.HttpClientCredentialType with get, set
Public Property ClientCredentialType As HttpClientCredentialType

속성 값

HttpClientCredentialType

인증에 사용할 클라이언트 자격 증명의 유형을 나타내는 열거형 값 중 하나입니다.

예외

속성을 정의되지 않은 값으로 설정하는 경우

예제

다음 코드에서는 이 속성에 액세스하여 해당 속성을 설정하는 방법을 보여 줍니다.

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

설명

반환 값은 다음 열거형 멤버 중 하나일 수 있습니다.

적용 대상