Skip to content

PasswordStrengthRules class

namespace: Serenity.Extensions   assemblySerenity.Extensions

The password strength rules.

public class PasswordStrengthRules

Public Members

name description
PasswordStrengthRules() The default constructor.
MinPasswordLength { get; set; } The minimum required password length.
RequireDigit { get; set; } Whether the password must contain a digit.
RequireLowercase { get; set; } Whether the password must contain a lowercase letter.
RequireNonAlphanumeric { get; set; } Whether the password must contain a non-alphanumeric character.
RequireUppercase { get; set; } Whether the password must contain an uppercase letter.

See Also