UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>.SetLockoutEndDateAsync 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.
Locks out a user until the specified end date has passed. Setting a end date in the past immediately unlocks a user.
public virtual System.Threading.Tasks.Task SetLockoutEndDateAsync (TUser user, DateTimeOffset? lockoutEnd, System.Threading.CancellationToken cancellationToken = default);
abstract member SetLockoutEndDateAsync : 'User * Nullable<DateTimeOffset> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.SetLockoutEndDateAsync : 'User * Nullable<DateTimeOffset> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function SetLockoutEndDateAsync (user As TUser, lockoutEnd As Nullable(Of DateTimeOffset), Optional cancellationToken As CancellationToken = Nothing) As Task
Parameters
- user
- TUser
The user whose lockout date should be set.
- lockoutEnd
- Nullable<DateTimeOffset>
The DateTimeOffset after which the user
's lockout should end.
- cancellationToken
- CancellationToken
The CancellationToken used to propagate notifications that the operation should be canceled.
Returns
The Task that represents the asynchronous operation.