UserNamePasswordServiceCredential Class
Represents a class that is used to configure how the service authenticates users that use user name/password authentication and to configure the caching of logon tokens.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
| Name | Description | |
|---|---|---|
![]() | CachedLogonTokenLifetime | Gets or sets the maximum length of time that a token is cached. |
![]() | CacheLogonTokens | Gets or sets a value that indicates whether logon tokens are cached. |
![]() | CustomUserNamePasswordValidator | Gets or sets a custom user name and password validator. |
![]() | IncludeWindowsGroups | Gets or sets a value that indicates whether Windows groups are included in the security context. |
![]() | MaxCachedLogonTokens | Gets or sets the maximum number of logon tokens to cache. |
![]() | MembershipProvider | Gets or sets the membership provider. |
![]() | UserNamePasswordValidationMode | Gets or sets the method of validating the user name and password. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
If none of the bindings used by a service is configured for user name/password-based authentication, the relevant properties for this class are ignored. These properties include the CustomUserNamePasswordValidator, IncludeWindowsGroups, MembershipProvider, and UserNamePasswordValidationMode properties.
If none of the bindings used by a service is configured to use Windows authentication for user name/password, the settings related to caching of logon tokens are ignored. These settings include the CachedLogonTokenLifetime, CacheLogonTokens, and MaxCachedLogonTokens properties.
The following example prints the values of the UserNamePasswordServiceCredential properties for a service.
// Create a service host. Uri httpUri = new Uri("http://localhost/Calculator"); ServiceHost sh = new ServiceHost(typeof(Calculator), httpUri); // Create a binding that uses a username/password credential. WSHttpBinding b = new WSHttpBinding(SecurityMode.Message); b.Security.Message.ClientCredentialType = MessageCredentialType.UserName; // Add an endpoint. sh.AddServiceEndpoint(typeof(ICalculator), b, "UserNamePasswordCalculator"); // Get a reference to the UserNamePasswordServiceCredential object. UserNamePasswordServiceCredential unpCredential = sh.Credentials.UserNameAuthentication; // Print out values. Console.WriteLine("IncludeWindowsGroup: {0}", unpCredential.IncludeWindowsGroups); Console.WriteLine("UserNamePasswordValidationMode: {0}", unpCredential.UserNamePasswordValidationMode); Console.WriteLine("CachedLogonTokenLifetime.Minutes: {0}", unpCredential.CachedLogonTokenLifetime.Minutes ); Console.WriteLine("CacheLogonTokens: {0}", unpCredential.CacheLogonTokens ); Console.WriteLine("MaxCachedLogonTokens: {0}", unpCredential.MaxCachedLogonTokens ); Console.ReadLine();
Available since 3.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

