UserStore<TUser,TRole,TContext,TKey,TUserClaim,TUserRole,TUserLogin,TUserToken>.GetLockoutEndDateAsync Method
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 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.