GenericIdentity.AuthenticationType Propiedad

Definición

Obtiene el tipo de autenticación que se usa para identificar al usuario.

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 de propiedad

String

Tipo de autenticación usado para identificar al usuario.

Implementaciones

Ejemplos

En el código siguiente se muestra el uso de la AuthenticationType propiedad . Este ejemplo de código forma parte de un ejemplo más grande proporcionado para la GenericIdentity clase .

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

Se aplica a