MembershipProvider.ValidatingPassword Event
.NET Framework 3.0
Occurs when a user is created, a password is changed, or a password is reset.
Namespace: System.Web.Security
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
'Declaration Public Event ValidatingPassword As MembershipValidatePasswordEventHandler 'Usage Dim instance As MembershipProvider Dim handler As MembershipValidatePasswordEventHandler AddHandler instance.ValidatingPassword, handler
/** @event */ public void add_ValidatingPassword (MembershipValidatePasswordEventHandler value) /** @event */ public void remove_ValidatingPassword (MembershipValidatePasswordEventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.
The ValidatingPassword event is raised during the CreateUser, ChangePassword, and ResetPassword methods.
The ValidatingPassword event occurs before the action requested and enables the user to continue or cancel the requested action. If the action is canceled, the user can specify an exception to be thrown.
Users use a MembershipValidatePasswordEventHandler event handler to specify a handler for the ValidatingPassword event. Provider implementers can use the OnValidatingPassword virtual method to raise the ValidatingPassword event.
For an example of a MembershipProvider implementation, see Implementing a Profile Provider.
Community Additions
ADD
Show: