Condividi tramite


GenericIdentity.AuthenticationType Proprietà

Definizione

Ottiene il tipo di autenticazione utilizzato per identificare l'utente.

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

Valore della proprietà

Tipo di autenticazione utilizzato per identificare l'utente.

Implementazioni

Esempio

Nel codice seguente viene illustrato l'uso della AuthenticationType proprietà . Questo esempio di codice fa parte di un esempio più ampio fornito per la GenericIdentity classe .

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

Si applica a