Table of Contents

Enum UserForgotPasswordResultType

Namespace
Dynamicweb.Users.Frontend.UserForgotPassword
Assembly
Dynamicweb.Users.dll

Determines the message returned to the user.

public enum UserForgotPasswordResultType

Fields

InvalidPasswordComplexity = 5

The password provided does not meet the complexity requirements.

InvalidPasswordLength = 4

The length of the password is invalid.

MismatchedPasswords = 3

New and Confirm Passwords do not match.

MissingValue = 1

Neither email address or username have been provided. One is required.

MustContainNumbersAndCharacters = 6

The password must contain both numbers and letters.

None = 0

None

PasswordMissingCharacterVariety = 7

The passowrd must contain uppercase, lowercase, numbers and special characters.

PasswordNotDifferent = 2

New password is equal to the old password. They must be different.

RecoveryTokenExpired = 8

The password recovery token has expired.

Success = 10

Password has been changed successfully.

ViolatingReuseRules = 9

The password reuse rules are not met

To top