UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>.GetLockoutEndDateAsync Method

Definition

Gets the last DateTimeOffset a user's last lockout expired, if any. Any time in the past should be indicates a user is not locked out.

public virtual System.Threading.Tasks.Task<DateTimeOffset?> GetLockoutEndDateAsync (TUser user, System.Threading.CancellationToken cancellationToken = default);
abstract member GetLockoutEndDateAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Nullable<DateTimeOffset>>
override this.GetLockoutEndDateAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Nullable<DateTimeOffset>>
Public Overridable Function GetLockoutEndDateAsync (user As TUser, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Nullable(Of DateTimeOffset))

Parameters

user
TUser

The user whose lockout date should be retrieved.

cancellationToken
CancellationToken

The CancellationToken used to propagate notifications that the operation should be canceled.

Returns

A Task<TResult> that represents the result of the asynchronous query, a DateTimeOffset containing the last time a user's lockout expired, if any.

Implements

Applies to