GenericIdentity.AuthenticationType Właściwość

Definicja

Pobiera typ uwierzytelniania używanego do identyfikowania użytkownika.

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

Wartość właściwości

String

Typ uwierzytelniania używany do identyfikowania użytkownika.

Implementuje

Przykłady

Poniższy kod przedstawia użycie AuthenticationType właściwości. Ten przykład kodu jest częścią większego przykładu podanego GenericIdentity dla klasy.

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

Dotyczy