Bewerken

Delen via


UserNamePasswordValidator Class

Definition

Validates a username and password.

public ref class UserNamePasswordValidator abstract
public abstract class UserNamePasswordValidator
type UserNamePasswordValidator = class
Public MustInherit Class UserNamePasswordValidator
Inheritance
UserNamePasswordValidator

Remarks

Use the UserNamePasswordValidator class to specify how a username and password is validated. This can be done by deriving a class from UserNamePasswordValidator and overriding the Validate method. For more information about creating a custom user name and password validator, see How to: Use a Custom User Name and Password Validator.

Constructors

UserNamePasswordValidator()

Initializes a new instance of the UserNamePasswordValidator class.

Properties

None

Gets a validator that performs no validation on the username and password. As a result, the username and password are always deemed valid.

Methods

CreateMembershipProviderValidator(MembershipProvider)

Gets an instance of a UserNamePasswordValidator that validates a username and password using the specified membership provider.

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(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)
Validate(String, String)

When overridden in a derived class, validates the specified username and password.

Applies to