MembershipUser.LastLockoutDate Property

Definition

Gets the most recent date and time that the membership user was locked out.

C#
public virtual DateTime LastLockoutDate { get; }

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.

Applies to

Tuote Versiot
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also