GenericIdentity.AuthenticationType Propriedade

Definição

Obtém o tipo de autenticação usado para identificar o usuário.

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

Valor da propriedade

String

O tipo de autenticação usado para identificar o usuário.

Implementações

Exemplos

O código a seguir mostra o uso da AuthenticationType propriedade. Este exemplo de código faz parte de um exemplo maior fornecido para a GenericIdentity classe.

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

Aplica-se a