Developer Resources for AbleCommerce eCommerce platform
CommerceBuilder.Users Namespace / PasswordTestResult Enumeration
Version
PasswordTestResult Enumeration
This Enumeration is used to indicate the result when testing a new user password against the password policy. This enumeration can be used in bitwise comparisons
Syntax
[Flags()]
public enum PasswordTestResult : System.Enum 
Members
MemberDescription
PasswordHistoryLimitation Password is not new and already present in user recent password history
PasswordTooShort New password length is not according as specified in the current password policy
RequireLower New password requires at least one lowercase character
RequireNonAlpha New password requires at least one non-letter (number or symbol)
RequireNumber New password requires at least one number
RequireSymbol New password requires at least one symbol (punctuation, underscore)
RequireUpper New password requires at least one uppercase character
Success New password meets the criteria against the current password policy
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         CommerceBuilder.Users.PasswordTestResult

See Also