This documentation is archived and is not being maintained.
SqlMembershipProvider Members
Visual Studio 2008
Manages storage of membership information for an ASP.NET application in a SQL Server database.
The SqlMembershipProvider type exposes the following members.
| Name | Description | |
|---|---|---|
|
SqlMembershipProvider | Initializes a new instance of the SqlMembershipProvider class. |
| Name | Description | |
|---|---|---|
|
ChangePassword | Modifies a user's password. (Overrides MembershipProvider.ChangePassword(String, String, String).) |
|
ChangePasswordQuestionAndAnswer | Updates the password question and answer for a user in the SQL Server membership database. (Overrides MembershipProvider.ChangePasswordQuestionAndAnswer(String, String, String, String).) |
|
CreateUser | Adds a new user to the SQL Server membership database. (Overrides MembershipProvider.CreateUser(String, String, String, String, String, Boolean, Object, MembershipCreateStatus).) |
|
DecryptPassword | Decrypts an encrypted password. (Inherited from MembershipProvider.) |
|
DeleteUser | Removes a user's membership information from the SQL Server membership database. (Overrides MembershipProvider.DeleteUser(String, Boolean).) |
|
EncryptPassword | Encrypts a password. (Inherited from MembershipProvider.) |
|
Equals | 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 | Returns a collection of membership users for which the e-mail address field contains the specified e-mail address. (Overrides MembershipProvider.FindUsersByEmail(String, Int32, Int32, Int32).) |
|
FindUsersByName | Gets a collection of membership users where the user name contains the specified user name to match. (Overrides MembershipProvider.FindUsersByName(String, Int32, Int32, Int32).) |
|
GeneratePassword | Generates a random password that is at least 14 characters long. |
|
GetAllUsers | Gets a collection of all the users in the SQL Server membership database. (Overrides MembershipProvider.GetAllUsers(Int32, Int32, Int32).) |
|
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
|
GetNumberOfUsersOnline | Returns the number of users currently accessing the application. (Overrides MembershipProvider.GetNumberOfUsersOnline().) |
|
GetPassword | Returns the password for the specified user name from the SQL Server membership database. (Overrides MembershipProvider.GetPassword(String, String).) |
|
GetType | Gets the type of the current instance. (Inherited from Object.) |
|
GetUser | Overloaded. Gets the information for a membership user from the data source. |
|
GetUserNameByEmail | Gets the user name associated with the specified e-mail address. (Overrides MembershipProvider.GetUserNameByEmail(String).) |
|
Initialize | Initializes the SQL Server membership provider with the property values specified in the ASP.NET application's configuration file. This method is not intended to be used directly from your code. (Overrides ProviderBase.Initialize(String, NameValueCollection).) |
|
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 | Resets a user's password to a new, automatically generated password. (Overrides MembershipProvider.ResetPassword(String, String).) |
|
ToString | Returns a string that represents the current object. (Inherited from Object.) |
|
UnlockUser | Clears the user's locked-out status so that the membership user can be validated. (Overrides MembershipProvider.UnlockUser(String).) |
|
UpdateUser | Updates information about a user in the SQL Server membership database. (Overrides MembershipProvider.UpdateUser(MembershipUser).) |
|
ValidateUser | Verifies that the specified user name and password exist in the SQL Server membership database. (Overrides MembershipProvider.ValidateUser(String, String).) |
| Name | Description | |
|---|---|---|
|
ApplicationName | Gets or sets the name of the application to store and retrieve membership information for. (Overrides MembershipProvider.ApplicationName.) |
|
Description | Gets a brief, friendly description suitable for display in administrative tools or other user interfaces (UIs). (Inherited from ProviderBase.) |
|
EnablePasswordReset | Gets a value indicating whether the SQL Server membership provider is configured to allow users to reset their passwords. (Overrides MembershipProvider.EnablePasswordReset.) |
|
EnablePasswordRetrieval | Gets a value indicating whether the SQL Server membership provider is configured to allow users to retrieve their passwords. (Overrides MembershipProvider.EnablePasswordRetrieval.) |
|
MaxInvalidPasswordAttempts | Gets the number of invalid password or password-answer attempts allowed before the membership user is locked out. (Overrides MembershipProvider.MaxInvalidPasswordAttempts.) |
|
MinRequiredNonAlphanumericCharacters | Gets the minimum number of special characters that must be present in a valid password. (Overrides MembershipProvider.MinRequiredNonAlphanumericCharacters.) |
|
MinRequiredPasswordLength | Gets the minimum length required for a password. (Overrides MembershipProvider.MinRequiredPasswordLength.) |
|
Name | Gets the friendly name used to refer to the provider during configuration. (Inherited from ProviderBase.) |
|
PasswordAttemptWindow | Gets the time window between which consecutive failed attempts to provide a valid password or password answers are tracked. (Overrides MembershipProvider.PasswordAttemptWindow.) |
|
PasswordFormat | Gets a value indicating the format for storing passwords in the SQL Server membership database. (Overrides MembershipProvider.PasswordFormat.) |
|
PasswordStrengthRegularExpression | Gets the regular expression used to evaluate a password. (Overrides MembershipProvider.PasswordStrengthRegularExpression.) |
|
RequiresQuestionAndAnswer | Gets a value indicating whether the SQL Server membership provider is configured to require the user to answer a password question for password reset and retrieval. (Overrides MembershipProvider.RequiresQuestionAndAnswer.) |
|
RequiresUniqueEmail | Gets a value indicating whether the SQL Server membership provider is configured to require a unique e-mail address for each user name. (Overrides MembershipProvider.RequiresUniqueEmail.) |
| Name | Description | |
|---|---|---|
|
ValidatingPassword | Occurs when a user is created, a password is changed, or a password is reset. (Inherited from MembershipProvider.) |
Show: