GenericIdentity.AuthenticationType Proprietà

Definizione

Ottiene il tipo di autenticazione usata 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 usata per identificare l'utente.

Implementazioni

Esempio

Il codice seguente mostra l'uso AuthenticationType della proprietà. Questo esempio di codice fa parte di un esempio più grande fornito per la GenericIdentity classe.

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

Si applica a