ClientWindowsAuthenticationMembershipProvider Class
Enables Windows authentication with client application services.
Assembly: System.Web.Extensions (in System.Web.Extensions.dll)
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.
System.Configuration.Provider::ProviderBase
System.Web.Security::MembershipProvider
System.Web.ClientServices.Providers::ClientWindowsAuthenticationMembershipProvider
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.