Interface IPasswordConfiguration
Password configuration
Namespace: Umbraco.Cms.Core.Configuration
Assembly: Umbraco.Core.dll
Syntax
public interface IPasswordConfiguration
Properties
View SourceHashAlgorithmType
Gets a value for the password hash algorithm type.
Declaration
string HashAlgorithmType { get; }
Property Value
Type | Description |
---|---|
System.String |
MaxFailedAccessAttemptsBeforeLockout
Gets a value for the maximum failed access attempts before lockout.
Declaration
int MaxFailedAccessAttemptsBeforeLockout { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Remarks
TODO: This doesn't really belong here
RequireDigit
Gets a value indicating whether at least one digit is required for the password.
Declaration
bool RequireDigit { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
RequiredLength
Gets a value for the minimum required length for the password.
Declaration
int RequiredLength { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
RequireLowercase
Gets a value indicating whether at least one lower-case character is required for the password.
Declaration
bool RequireLowercase { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
RequireNonLetterOrDigit
Gets a value indicating whether at least one non-letter or digit is required for the password.
Declaration
bool RequireNonLetterOrDigit { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
RequireUppercase
Gets a value indicating whether at least one upper-case character is required for the password.
Declaration
bool RequireUppercase { get; }
Property Value
Type | Description |
---|---|
System.Boolean |