Search Results for

    Show / Hide Table of Contents
    View Source

    Class PasswordConfiguration

    Abstract base class for password configuration.

    Inheritance
    object
    Namespace: Umbraco.Cms.Core.Configuration
    Assembly: Umbraco.Core.dll
    Syntax
    public abstract class PasswordConfiguration : IPasswordConfiguration

    Constructors

    View Source

    PasswordConfiguration(IPasswordConfiguration)

    Initializes a new instance of the PasswordConfiguration class.

    Declaration
    protected PasswordConfiguration(IPasswordConfiguration configSettings)
    Parameters
    Type Name Description
    IPasswordConfiguration configSettings

    The password configuration settings.

    Exceptions
    Type Condition
    ArgumentNullException

    Thrown when configSettings is null.

    Properties

    View Source

    HashAlgorithmType

    Gets a value for the password hash algorithm type.

    Declaration
    public string HashAlgorithmType { get; }
    Property Value
    Type Description
    string
    View Source

    MaxFailedAccessAttemptsBeforeLockout

    Gets a value for the maximum failed access attempts before lockout.

    Declaration
    public int MaxFailedAccessAttemptsBeforeLockout { get; }
    Property Value
    Type Description
    int
    Remarks

    TODO: This doesn't really belong here

    View Source

    RequireDigit

    Gets a value indicating whether at least one digit is required for the password.

    Declaration
    public bool RequireDigit { get; }
    Property Value
    Type Description
    bool
    View Source

    RequireLowercase

    Gets a value indicating whether at least one lower-case character is required for the password.

    Declaration
    public bool RequireLowercase { get; }
    Property Value
    Type Description
    bool
    View Source

    RequireNonLetterOrDigit

    Gets a value indicating whether at least one non-letter or digit is required for the password.

    Declaration
    public bool RequireNonLetterOrDigit { get; }
    Property Value
    Type Description
    bool
    View Source

    RequireUppercase

    Gets a value indicating whether at least one upper-case character is required for the password.

    Declaration
    public bool RequireUppercase { get; }
    Property Value
    Type Description
    bool
    View Source

    RequiredLength

    Gets a value for the minimum required length for the password.

    Declaration
    public int RequiredLength { get; }
    Property Value
    Type Description
    int
    • View Source
    In this article
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX