UserManager<TUser>.IsLockedOutAsync(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.
Returns a flag indicating whether the specified user
is locked out,
as an asynchronous operation.
public:
virtual System::Threading::Tasks::Task<bool> ^ IsLockedOutAsync(TUser user);
public virtual System.Threading.Tasks.Task<bool> IsLockedOutAsync (TUser user);
abstract member IsLockedOutAsync : 'User -> System.Threading.Tasks.Task<bool>
override this.IsLockedOutAsync : 'User -> System.Threading.Tasks.Task<bool>
Public Overridable Function IsLockedOutAsync (user As TUser) As Task(Of Boolean)
Parameters
- user
- TUser
The user whose locked out status should be retrieved.
Returns
The Task that represents the asynchronous operation, true if the specified user
is locked out, otherwise false.