UserManager<TUser>.GetLockoutEnabledAsync(TUser) Method

Definition

Retrieves a flag indicating whether user lockout can be enabled for the specified user.

public:
 virtual System::Threading::Tasks::Task<bool> ^ GetLockoutEnabledAsync(TUser user);
public virtual System.Threading.Tasks.Task<bool> GetLockoutEnabledAsync (TUser user);
abstract member GetLockoutEnabledAsync : 'User -> System.Threading.Tasks.Task<bool>
override this.GetLockoutEnabledAsync : 'User -> System.Threading.Tasks.Task<bool>
Public Overridable Function GetLockoutEnabledAsync (user As TUser) As Task(Of Boolean)

Parameters

user
TUser

The user whose ability to be locked out should be returned.

Returns

The Task that represents the asynchronous operation, true if a user can be locked out, otherwise false.

Applies to