GenericIdentity.AuthenticationType Egenskap

Definition

Hämtar den typ av autentisering som används för att identifiera användaren.

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

Egenskapsvärde

Den typ av autentisering som används för att identifiera användaren.

Implementeringar

Exempel

Följande kod visar användningen av AuthenticationType egenskapen. Det här kodexemplet är en del av ett större exempel för GenericIdentity klassen.

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

Gäller för