GenericIdentity.AuthenticationType Property

Definition

Gets the type of authentication used to identify the user.

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

Property Value

The type of authentication used to identify the user.

Implements

Examples

The following code shows the use of the AuthenticationType property. This code example is part of a larger example provided for the GenericIdentity class.

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

Applies to