ClientWindowsAuthenticationMembershipProvider Class
Enables Windows authentication with client application services.
System.Configuration.Provider::ProviderBase
System.Web.Security::MembershipProvider
System.Web.ClientServices.Providers::ClientWindowsAuthenticationMembershipProvider
Assembly: System.Web.Extensions (in System.Web.Extensions.dll)
The ClientWindowsAuthenticationMembershipProvider type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | ClientWindowsAuthenticationMembershipProvider | Initializes a new instance of the ClientWindowsAuthenticationMembershipProvider class. |
| Name | Description | |
|---|---|---|
![]() | ApplicationName | This property is not used by this class. (Overrides MembershipProvider::ApplicationName.) |
![]() | Description | Gets a brief, friendly description suitable for display in administrative tools or other user interfaces (UIs). (Inherited from ProviderBase.) |
![]() | EnablePasswordReset | This property is not used by this class. (Overrides MembershipProvider::EnablePasswordReset.) |
![]() | EnablePasswordRetrieval | This property is not used by this class. (Overrides MembershipProvider::EnablePasswordRetrieval.) |
![]() | MaxInvalidPasswordAttempts | This property is not used by this class. (Overrides MembershipProvider::MaxInvalidPasswordAttempts.) |
![]() | MinRequiredNonAlphanumericCharacters | This property is not used by this class. (Overrides MembershipProvider::MinRequiredNonAlphanumericCharacters.) |
![]() | MinRequiredPasswordLength | This property is not used by this class. (Overrides MembershipProvider::MinRequiredPasswordLength.) |
![]() | Name | Gets the friendly name used to refer to the provider during configuration. (Inherited from ProviderBase.) |
![]() | PasswordAttemptWindow | This property is not used by this class. (Overrides MembershipProvider::PasswordAttemptWindow.) |
![]() | PasswordFormat | This property is not used by this class. (Overrides MembershipProvider::PasswordFormat.) |
![]() | PasswordStrengthRegularExpression | This property is not used by this class. (Overrides MembershipProvider::PasswordStrengthRegularExpression.) |
![]() | RequiresQuestionAndAnswer | This property is not used by this class. (Overrides MembershipProvider::RequiresQuestionAndAnswer.) |
![]() | RequiresUniqueEmail | This property is not used by this class. (Overrides MembershipProvider::RequiresUniqueEmail.) |
| Name | Description | |
|---|---|---|
![]() | ChangePassword | This method is not used by this class. (Overrides MembershipProvider::ChangePassword(String, String, String).) |
![]() | ChangePasswordQuestionAndAnswer | This method is not used by this class. (Overrides MembershipProvider::ChangePasswordQuestionAndAnswer(String, String, String, String).) |
![]() | CreateUser | This method is not used by this class. (Overrides MembershipProvider::CreateUser(String, String, String, String, String, Boolean, Object, MembershipCreateStatus%).) |
![]() | DecryptPassword | Decrypts an encrypted password. (Inherited from MembershipProvider.) |
![]() | DeleteUser | This method is not used by this class. (Overrides MembershipProvider::DeleteUser(String, Boolean).) |
![]() | EncryptPassword(array<Byte>) | Encrypts a password. (Inherited from MembershipProvider.) |
![]() | EncryptPassword(array<Byte>, MembershipPasswordCompatibilityMode) | Encrypts the specified password using the specified password-compatibility mode. (Inherited from MembershipProvider.) |
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | FindUsersByEmail | This method is not used by this class. (Overrides MembershipProvider::FindUsersByEmail(String, Int32, Int32, Int32%).) |
![]() | FindUsersByName | This method is not used by this class. (Overrides MembershipProvider::FindUsersByName(String, Int32, Int32, Int32%).) |
![]() | GetAllUsers | This method is not used by this class. (Overrides MembershipProvider::GetAllUsers(Int32, Int32, Int32%).) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetNumberOfUsersOnline | This method is not used by this class. (Overrides MembershipProvider::GetNumberOfUsersOnline().) |
![]() | GetPassword | This method is not used by this class. (Overrides MembershipProvider::GetPassword(String, String).) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | GetUser(Object, Boolean) | This method is not used by this class. (Overrides MembershipProvider::GetUser(Object, Boolean).) |
![]() | GetUser(String, Boolean) | This method is not used by this class. (Overrides MembershipProvider::GetUser(String, Boolean).) |
![]() | GetUserNameByEmail | This method is not used by this class. (Overrides MembershipProvider::GetUserNameByEmail(String).) |
![]() | Initialize | Initializes the provider. (Inherited from ProviderBase.) |
![]() | Logout | Logs out the user. |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | OnValidatingPassword | Raises the ValidatingPassword event if an event handler has been defined. (Inherited from MembershipProvider.) |
![]() | ResetPassword | This method is not used by this class. (Overrides MembershipProvider::ResetPassword(String, String).) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
![]() | UnlockUser | This method is not used by this class. (Overrides MembershipProvider::UnlockUser(String).) |
![]() | UpdateUser | This method is not used by this class. (Overrides MembershipProvider::UpdateUser(MembershipUser).) |
![]() | ValidateUser | Automatically authenticates the current user by using the identity supplied by the operating system. (Overrides MembershipProvider::ValidateUser(String, String).) |
| Name | Description | |
|---|---|---|
![]() | ValidatingPassword | Occurs when a user is created, a password is changed, or a password is reset. (Inherited from MembershipProvider.) |
You can use client application services to validate users by using Windows authentication. To enable Windows authentication, you configure your application to use the ClientWindowsAuthenticationMembershipProvider class. For more information, see How to: Configure Client Application Services.
After configuration, you can validate users by calling the static Membership::ValidateUser method. The Membership::ValidateUser method internally calls the ValidateUser method.
The ClientWindowsAuthenticationMembershipProvider::ValidateUser method automatically authenticates the current user and sets the static Thread::CurrentPrincipal property to a ClientRolePrincipal object that contains the current WindowsIdentity. If a ClientRoleProvider is configured for your application, you can use the ClientRolePrincipal object to retrieve user role information from the roles service.
You can retrieve a reference to the current ClientWindowsAuthenticationMembershipProvider instance through the static Membership::Provider property. You can use the membership provider reference to call the ClientWindowsAuthenticationMembershipProvider::ValidateUser method directly. Additionally, you will need the membership provider reference to call the Logout method, which is not available in the MembershipProvider base class.
The following example code demonstrates how to use this method to authenticate a user by using Windows authentication. In this example, the value of the static Membership::Provider property is cast to a ClientWindowsAuthenticationMembershipProvider instance. This makes sure that a NullReferenceException will be thrown if you accidentally test this code by using another membership provider.
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.



