This documentation is archived and is not being maintained.
UserNamePasswordValidationMode Enumeration
Visual Studio 2010
Lists ways to validate in username/password mode.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
| Member name | Description | |
|---|---|---|
| Windows | Usernames are mapped to Windows users. | |
| MembershipProvider | Provides password validation based on a configured MembershipProvider. | |
| Custom | Custom authentication based on a configured custom UsernamePasswordValidator. |
This enumeration is referenced by UserNameServiceElement, ServiceCredentialsSecurityTokenManager, and UserNamePasswordServiceCredential.
This example shows how to set this property.
// 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(); } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: