GenericIdentity.AuthenticationType Propiedad
Definición
Obtiene el tipo de autenticación que se usa para identificar al usuario.Gets the type of authentication used to identify the user.
public:
virtual property System::String ^ AuthenticationType { System::String ^ get(); };
public virtual string AuthenticationType { get; }
member this.AuthenticationType : string
Public Overridable ReadOnly Property AuthenticationType As String
Valor de propiedad
Tipo de autenticación usado para identificar al usuario.The type of authentication used to identify the user.
Ejemplos
En el código siguiente se muestra el uso AuthenticationType de la propiedad.The following code shows the use of the AuthenticationType property. Este ejemplo de código forma parte de un ejemplo más extenso proporcionado GenericIdentity para la clase.This code example is part of a larger example provided for the GenericIdentity class.
String^ identityAuthenticationType = genericIdentity->AuthenticationType;
string identityAuthenticationType =
genericIdentity.AuthenticationType;
Dim identityAuthenticationType As String
identityAuthenticationType = genericIdentity.AuthenticationType()