Class LocalAccountLockoutPolicy
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents the account lockout policy on a Windows machine.
public class LocalAccountLockoutPolicy : BaseTypeSection
- Inheritance
-
LocalAccountLockoutPolicy
Constructors
LocalAccountLockoutPolicy()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.LocalAccountLockoutPolicy class.
public LocalAccountLockoutPolicy()
Properties
LockoutDuration
Gets or sets the time in minutes that a locked account remains locked before it is automatically unlocked. A lockout duration of zero indicates an unlimited lockout duration. NOTE: this field doesn't apply if LockoutThreshold is set to zero.
public int LockoutDuration { get; set; }
Property Value
LockoutDurationSource
Gets or sets the configuration source for the lockout duration setting.
public PolicyConfigurableSource LockoutDurationSource { get; set; }
Property Value
LockoutDurationString
Gets the account lockout duration in a human readable format.
public string LockoutDurationString { get; set; }
Property Value
LockoutReset
Gets or sets the maximum time, in minutes, that can elapse between any two failed logon attempts before lockout occur. NOTE: this field doesn't apply if LockoutThreshold is set to zero.
public int LockoutReset { get; set; }
Property Value
LockoutResetSource
Gets or sets the configuration source for the lockout reset setting.
public PolicyConfigurableSource LockoutResetSource { get; set; }
Property Value
LockoutResetString
Gets the account lockout reset time in a human readable format.
public string LockoutResetString { get; set; }
Property Value
LockoutThreshold
Gets or sets the number of invalid password authentications that can occur before an account is marked as locked out.
public int LockoutThreshold { get; set; }
Property Value
LockoutThresholdSource
Gets or sets the configuration source for the account lockout threshold setting.
public PolicyConfigurableSource LockoutThresholdSource { get; set; }