Class PasswordConfiguration
Inheritance
object
Namespace: Umbraco.Cms.Core.Configuration
Assembly: Umbraco.Core.dll
Syntax
public abstract class PasswordConfiguration : IPasswordConfiguration
Constructors
View SourcePasswordConfiguration(IPasswordConfiguration)
Declaration
protected PasswordConfiguration(IPasswordConfiguration configSettings)
Parameters
| Type | Name | Description |
|---|---|---|
| IPasswordConfiguration | configSettings |
Properties
View SourceHashAlgorithmType
Gets a value for the password hash algorithm type.
Declaration
public string HashAlgorithmType { get; }
Property Value
| Type | Description |
|---|---|
| string |
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
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 |
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 |
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 |
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 |
RequiredLength
Gets a value for the minimum required length for the password.
Declaration
public int RequiredLength { get; }
Property Value
| Type | Description |
|---|---|
| int |