ClientFormsAuthenticationCredentials Class
Represents user login information for forms authentication by using client application services.
Assembly: System.Web.Extensions (in System.Web.Extensions.dll)
| Name | Description | |
|---|---|---|
![]() | ClientFormsAuthenticationCredentials(String^, String^, Boolean) | 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 the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | 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.
Available since 3.5
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


