GenericIdentity.AuthenticationType Propriété

Définition

Obtient le type d'authentification utilisé pour identifier l'utilisateur.

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

Valeur de propriété

Type d'authentification utilisé pour identifier l'utilisateur.

Implémente

Exemples

Le code suivant montre l’utilisation de la AuthenticationType propriété . Cet exemple de code fait partie d’un exemple plus grand fourni pour la GenericIdentity classe .

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

S’applique à