IUserLockoutStore<TUser>.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:
 System::Threading::Tasks::Task<Nullable<DateTimeOffset>> ^ GetLockoutEndDateAsync(TUser user, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task<DateTimeOffset?> GetLockoutEndDateAsync (TUser user, System.Threading.CancellationToken cancellationToken);
abstract member GetLockoutEndDateAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Nullable<DateTimeOffset>>
Public Function GetLockoutEndDateAsync (user As TUser, cancellationToken As CancellationToken) 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.

Applies to