FormsAuthenticationConfiguration.Credentials Property
.NET Framework 2.0
Gets the FormsAuthenticationCredentials collection of user names and passwords.
Namespace: System.Web.Configuration
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The Credentials property gets the user names and passwords to use during forms-based authentication.
Note: |
|---|
|
When security is required, you should use alternative ways of storing the user names and passwords; for example, in a database store. If you decide to use this collection, you should use the provided encryption facility. |
The following code example shows how to access the Credentials property. Refer to the code example in the FormsAuthenticationConfiguration class topic to learn how to get the section.
// Get the current Credentials. FormsAuthenticationCredentials currentCredentials = formsAuthentication.Credentials; StringBuilder credentials = new StringBuilder(); // Get all the credentials. for (System.Int32 i = 0; i < currentCredentials.Users.Count; i++) { credentials.Append("Name: " + currentCredentials.Users[i].Name + " Password: " + currentCredentials.Users[i].Password); credentials.Append(Environment.NewLine); }
Note: