Share via


IUserLockoutStore<TUser, TKey>.GetLockoutEnabledAsync Method

Asynchronously returns whether the user can be locked out.

Namespace:  Microsoft.AspNet.Identity
Assembly:  Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)

Syntax

'Declaration
Function GetLockoutEnabledAsync ( _
    user As TUser _
) As Task(Of Boolean)
'Usage
Dim instance As IUserLockoutStore 
Dim user As TUser
Dim returnValue As Task(Of Boolean)

returnValue = instance.GetLockoutEnabledAsync(user)
Task<bool> GetLockoutEnabledAsync(
    TUser user
)
Task<bool>^ GetLockoutEnabledAsync(
    TUser user
)
abstract GetLockoutEnabledAsync : 
        user:'TUser -> Task<bool> 
function GetLockoutEnabledAsync(
    user : TUser
) : Task<boolean>

Parameters

  • user
    Type: TUser
    The user.

Return Value

Type: System.Threading.Tasks.Task<Boolean>
The task object representing the asynchronous operation.

See Also

Reference

IUserLockoutStore<TUser, TKey> Interface

Microsoft.AspNet.Identity Namespace

Other Resources

ASP.NET Identity