GenericIdentity.AuthenticationType プロパティ

定義

ユーザーを識別するために使用する認証の種類を取得します。

public:
 virtual property System::String ^ AuthenticationType { System::String ^ get(); };
public override string AuthenticationType { get; }
public virtual string AuthenticationType { get; }
member this.AuthenticationType : string
Public Overrides ReadOnly Property AuthenticationType As String
Public Overridable ReadOnly Property AuthenticationType As String

プロパティ値

String

ユーザーを識別するために使用する認証の種類。

実装

次のコードは、プロパティの使用方法を AuthenticationType 示しています。 このコード例は、GenericIdentity クラスのために提供されている大規模な例の一部です。

String^ identityAuthenticationType = genericIdentity->AuthenticationType;
string identityAuthenticationType = 
    genericIdentity.AuthenticationType;
Dim identityAuthenticationType As String
identityAuthenticationType = genericIdentity.AuthenticationType()

適用対象