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

属性值

用于标识用户的身份验证的类型。

实现

示例

以下代码演示如何使用 AuthenticationType 属性。 此代码示例是为 GenericIdentity 类提供的一个更大示例的一部分。

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

适用于