Leggere in inglese

Condividi tramite


UserNamePasswordValidationMode Enumerazione

Definizione

Elenca i modi in cui è possibile convalidare in modalità nome utente/password.

C#
public enum UserNamePasswordValidationMode
Ereditarietà
UserNamePasswordValidationMode

Campi

Nome Valore Descrizione
Custom 2

Autenticazione personalizzata basata su un elemento personalizzato UserNamePasswordValidator configurato.

MembershipProvider 1

Fornisce la convalida della password basata su un elemento MembershipProvider configurato.

Windows 0

I nomi utente vengono mappati agli utenti di Windows.

Esempio

In questo esempio viene illustrato come impostare questa proprietà.

C#
// Host the service within this EXE console application.
public static void Main()
{
    // Create a ServiceHost for the CalculatorService type and provide the base address.
    using (ServiceHost serviceHost = new ServiceHost(typeof(CalculatorService)))
    {
        serviceHost.Credentials.UserNameAuthentication.UserNamePasswordValidationMode = UserNamePasswordValidationMode.Custom;
        serviceHost.Credentials.UserNameAuthentication.CustomUserNamePasswordValidator = new MyUserNamePasswordValidator();

        // Open the ServiceHostBase to create listeners and start listening for messages.
        serviceHost.Open();

        // The service can now be accessed.
        Console.WriteLine("The service is ready.");
        Console.WriteLine("The service is running in the following account: {0}", WindowsIdentity.GetCurrent().Name);
        Console.WriteLine("Press <ENTER> to terminate service.");
        Console.WriteLine();
        Console.ReadLine();
    }
}

Commenti

Si fa riferimento a questa enumerazione in UserNameServiceElement, ServiceCredentialsSecurityTokenManager e UserNamePasswordServiceCredential.

Si applica a

Prodotto Versioni
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1