SimpleMembershipProvider.ResetPasswordWithToken(String, String) Method

Definition

Resets a password after verifying that the specified password reset token is valid.

public override bool ResetPasswordWithToken (string token, string newPassword);
override this.ResetPasswordWithToken : string * string -> bool
Public Overrides Function ResetPasswordWithToken (token As String, newPassword As String) As Boolean

Parameters

token
String

A password reset token.

newPassword
String

The new password.

Returns

true if the password was changed; otherwise, false.

Exceptions

newPassword is null or empty.

The SimpleMembershipProvider class was not initialized using a call to the InitializeDatabaseConnection method.

Applies to