Click or drag to resize
GnomonMembershipProvider Class
Class GnomonMembershipProvider.
Inheritance Hierarchy

Namespace: RMP.Web
Assembly: RMP.Web (in RMP.Web.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public class GnomonMembershipProvider : MembershipProvider

The GnomonMembershipProvider type exposes the following members.

Constructors
  NameDescription
Public methodGnomonMembershipProvider
Top
Methods
  NameDescription
Public methodChangePassword
Processes a request to update the password for a membership user.
(Overrides MembershipProviderChangePassword(String, String, String).)
Public methodChangePasswordQuestionAndAnswer
Processes a request to update the password question and answer for a membership user.
(Overrides MembershipProviderChangePasswordQuestionAndAnswer(String, String, String, String).)
Public methodCreateUser
Adds a new membership user to the data source.
(Overrides MembershipProviderCreateUser(String, String, String, String, String, Boolean, Object, MembershipCreateStatus).)
Protected methodDecryptPassword
Decrypts an encrypted password.
(Inherited from MembershipProvider.)
Public methodDeleteUser
Removes a user from the membership data source.
(Overrides MembershipProviderDeleteUser(String, Boolean).)
Protected methodEncryptPassword(Byte)
Encrypts a password.
(Inherited from MembershipProvider.)
Protected methodEncryptPassword(Byte, MembershipPasswordCompatibilityMode)
Encrypts the specified password using the specified password-compatibility mode.
(Inherited from MembershipProvider.)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodFindUsersByEmail
Gets a collection of membership users where the e-mail address contains the specified e-mail address to match.
(Overrides MembershipProviderFindUsersByEmail(String, Int32, Int32, Int32).)
Public methodFindUsersByName
Gets a collection of membership users where the user name contains the specified user name to match.
(Overrides MembershipProviderFindUsersByName(String, Int32, Int32, Int32).)
Public methodGetAllUsers
Gets a collection of all the users in the data source in pages of data.
(Overrides MembershipProviderGetAllUsers(Int32, Int32, Int32).)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetNumberOfUsersOnline
Gets the number of users currently accessing the application.
(Overrides MembershipProviderGetNumberOfUsersOnline.)
Public methodGetPassword
Gets the password for the specified user name from the data source.
(Overrides MembershipProviderGetPassword(String, String).)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetUser(Object, Boolean)
Gets user information from the data source based on the unique identifier for the membership user. Provides an option to update the last-activity date/time stamp for the user.
(Overrides MembershipProviderGetUser(Object, Boolean).)
Public methodGetUser(String, Boolean)
Gets information from the data source for a user. Provides an option to update the last-activity date/time stamp for the user.
(Overrides MembershipProviderGetUser(String, Boolean).)
Public methodGetUserNameByEmail
Gets the user name associated with the specified e-mail address.
(Overrides MembershipProviderGetUserNameByEmail(String).)
Public methodInitialize
Initializes the provider.
(Overrides ProviderBaseInitialize(String, NameValueCollection).)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodOnValidatingPassword
Raises the ValidatingPassword event if an event handler has been defined.
(Inherited from MembershipProvider.)
Public methodResetPassword
Resets a user's password to a new, automatically generated password.
(Overrides MembershipProviderResetPassword(String, String).)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodUnlockUser
Clears a lock so that the membership user can be validated.
(Overrides MembershipProviderUnlockUser(String).)
Public methodUpdateUser
Updates information about a user in the data source.
(Overrides MembershipProviderUpdateUser(MembershipUser).)
Public methodValidateUser
Verifies that the specified user name and password exist in the data source.
(Overrides MembershipProviderValidateUser(String, String).)
Top
Properties
  NameDescription
Public propertyApplicationName
The name of the application using the custom membership provider.
(Overrides MembershipProviderApplicationName.)
Public propertyDescription
Gets a brief, friendly description suitable for display in administrative tools or other user interfaces (UIs).
(Inherited from ProviderBase.)
Public propertyEnablePasswordReset
Indicates whether the membership provider is configured to allow users to reset their passwords.
(Overrides MembershipProviderEnablePasswordReset.)
Public propertyEnablePasswordRetrieval
Indicates whether the membership provider is configured to allow users to retrieve their passwords.
(Overrides MembershipProviderEnablePasswordRetrieval.)
Public propertyMaxInvalidPasswordAttempts
Gets the number of invalid password or password-answer attempts allowed before the membership user is locked out.
(Overrides MembershipProviderMaxInvalidPasswordAttempts.)
Public propertyMinRequiredNonAlphanumericCharacters
Gets the minimum number of special characters that must be present in a valid password.
(Overrides MembershipProviderMinRequiredNonAlphanumericCharacters.)
Public propertyMinRequiredPasswordLength
Gets the minimum length required for a password.
(Overrides MembershipProviderMinRequiredPasswordLength.)
Public propertyName
Gets the friendly name used to refer to the provider during configuration.
(Inherited from ProviderBase.)
Public propertyPasswordAttemptWindow
Gets the number of minutes in which a maximum number of invalid password or password-answer attempts are allowed before the membership user is locked out.
(Overrides MembershipProviderPasswordAttemptWindow.)
Public propertyPasswordFormat
Gets a value indicating the format for storing passwords in the membership data store.
(Overrides MembershipProviderPasswordFormat.)
Public propertyPasswordStrengthRegularExpression
Gets the regular expression used to evaluate a password.
(Overrides MembershipProviderPasswordStrengthRegularExpression.)
Public propertyRequiresQuestionAndAnswer
Gets a value indicating whether the membership provider is configured to require the user to answer a password question for password reset and retrieval.
(Overrides MembershipProviderRequiresQuestionAndAnswer.)
Public propertyRequiresUniqueEmail
Gets a value indicating whether the membership provider is configured to require a unique e-mail address for each user name.
(Overrides MembershipProviderRequiresUniqueEmail.)
Top
Events
  NameDescription
Public eventValidatingPassword
Occurs when a user is created, a password is changed, or a password is reset.
(Inherited from MembershipProvider.)
Top
See Also