GenericIdentity.AuthenticationType Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
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
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
Colaborar conosco no GitHub
A fonte deste conteúdo pode ser encontrada no GitHub, onde você também pode criar e revisar problemas e solicitações de pull. Para obter mais informações, confira o nosso guia para colaboradores.