AuthenticablePrincipal.AccountLockoutTime Property

Definition

Gets the Nullable DateTime that specifies the date and time that the account was locked out.

public:
 property Nullable<DateTime> AccountLockoutTime { Nullable<DateTime> get(); };
public DateTime? AccountLockoutTime { get; }
member this.AccountLockoutTime : Nullable<DateTime>
Public ReadOnly Property AccountLockoutTime As Nullable(Of DateTime)

Property Value

A DateTime that specifies the date and time that the account was locked out, or null if no lockout time is set on the account.

Exceptions

The underlying store does not support this property.

Remarks

The account lockout time is system dependent, and cannot be set by the Account Management API. To unlock the account, use the UnlockAccount method.

It is possible that an account may not be locked out when the AccountLockoutTime returns a non-null value. Applications should use the IsAccountLockedOut method to determine whether the account is locked out.

As with all DateTime properties in System.DirectoryServices.AccountManagement, the time returned is in UTC form. To convert it to local time, call the ToLocalTime method on the return object.

Applies to