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

プロパティ値

認証に使用するクライアント資格情報の種類を示す列挙値の 1 つ。

例外

プロパティが未定義の値に設定されています。

次のコードでは、このプロパティにアクセスして設定する方法を示します。

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

注釈

戻り値は次の列挙メンバーのいずれかです。

適用対象