MembershipUser.LastLockoutDate Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the most recent date and time that the membership user was locked out.
public:
virtual property DateTime LastLockoutDate { DateTime get(); };
public virtual DateTime LastLockoutDate { get; }
member this.LastLockoutDate : DateTime
Public Overridable ReadOnly Property LastLockoutDate As DateTime
Property Value
A DateTime object that represents the most recent date and time that the membership user was locked out.
Remarks
Users are most commonly locked out when the MaxInvalidPasswordAttempts is reached within the PasswordAttemptWindow.
Users can also be locked out if you use the GetPassword or ResetPassword overload that accepts a password answer and the number of bad answers entered by the user reaches the Membership.MaxInvalidPasswordAttempts within the Membership.PasswordAttemptWindow.
The default value for the LastLockoutDate property is determined by the membership provider. For example, when a membership user is created using the SqlMembershipProvider provider, the LastLockoutDate property for the user is initially set to 01/01/1754.