ClientFormsAuthenticationCredentials Class
Represents user login information for forms authentication by using client application services.
Assembly: System.Web.Extensions (in System.Web.Extensions.dll)
The ClientFormsAuthenticationCredentials type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | ClientFormsAuthenticationCredentials | Initializes a new instance of the ClientFormsAuthenticationCredentials class. |
| Name | Description | |
|---|---|---|
![]() | Password | Gets or sets the user password. |
![]() | RememberMe | Gets or sets a value indicating whether the user credentials should be saved and reused for subsequent login attempts. |
![]() | UserName | Gets or sets the user name. |
| Name | Description | |
|---|---|---|
![]() | 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.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
The ClientFormsAuthenticationCredentials class is used by the IClientFormsAuthenticationCredentialsProvider interface. When you implement this interface, you must return a populated instance of this class in your GetCredentials implementation.
The following example code demonstrates how to implement the IClientFormsAuthenticationCredentialsProvider::GetCredentials method, which returns an instance of this class. In this example, the GetCredentials method is part of a login dialog box class. The method displays the dialog box, and then returns a ClientFormsAuthenticationCredentials instance initialized with the user-specified values.
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.


