UserManager<TUser>.GetLockoutEndDateAsync(TUser) 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. A time value in the past indicates a user is not currently locked out.
public:
virtual System::Threading::Tasks::Task<Nullable<DateTimeOffset>> ^ GetLockoutEndDateAsync(TUser user);
public virtual System.Threading.Tasks.Task<DateTimeOffset?> GetLockoutEndDateAsync (TUser user);
abstract member GetLockoutEndDateAsync : 'User -> System.Threading.Tasks.Task<Nullable<DateTimeOffset>>
override this.GetLockoutEndDateAsync : 'User -> System.Threading.Tasks.Task<Nullable<DateTimeOffset>>
Public Overridable Function GetLockoutEndDateAsync (user As TUser) As Task(Of Nullable(Of DateTimeOffset))
Parameters
- user
- TUser
The user whose lockout date should be retrieved.
Returns
A Task<TResult> that represents the lookup, a DateTimeOffset containing the last time a user's lockout expired, if any.