Table of Contents

Enum UserChangePasswordResultType

Namespace
Dynamicweb.Users.Frontend.UserChangePassword
Assembly
Dynamicweb.Users.dll
public enum UserChangePasswordResultType

Fields

InvalidOldPassword = 7

The old password provided is not the logged in users password.

InvalidPasswordComplexity = 4

The password provided does not meet the complexity requirements.

InvalidPasswordLength = 3

The length of the password is invalid.

MismatchedPasswords = 2

New and Confirm Passwords do not match.

MissingValue = 1

Either new or confirmed password is missing. Both are required.

MustContainNumbersAndCharacters = 5

The password must contain both numbers and letters.

None = 0

None

PasswordMissingCharacterVariety = 6

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

Success = 9

Changing password was a success.

ViolatingReuseRules = 8

The password reuse rules are not met

To top