Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Sets whether the user allows lockout.
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
Syntax
public static IdentityResult SetLockoutEnabled<TUser, TKey>(
this UserManager<TUser, TKey> manager,
TKey userId,
bool enabled
)
where TUser : class, IUser<TKey>
where TKey : object, IEquatable<TKey>
public:
generic<typename TUser, typename TKey>
where TUser : ref class, IUser<TKey>
where TKey : Object, IEquatable<TKey>
[ExtensionAttribute]
static IdentityResult^ SetLockoutEnabled(
UserManager<TUser, TKey>^ manager,
TKey userId,
bool enabled
)
static member SetLockoutEnabled<'TUser, 'TKey when 'TUser : not struct and IUser<'TKey> when 'TKey : Object and IEquatable<'TKey>> :
manager:UserManager<'TUser, 'TKey> *
userId:'TKey *
enabled:bool -> IdentityResult
<ExtensionAttribute>
Public Shared Function SetLockoutEnabled(Of TUser As { Class, IUser(Of TKey) }, TKey As { Object, IEquatable(Of TKey) }) (
manager As UserManager(Of TUser, TKey),
userId As TKey,
enabled As Boolean
) As IdentityResult
Parameters
manager
Type: Microsoft.AspNet.Identity.UserManager<TUser, TKey>The user manager.
userId
Type: TKeyThe user ID.
enabled
Type: System.Booleantrue to enable the lockout; otherwise, false.
Return Value
Type: Microsoft.AspNet.Identity.IdentityResult
The result of the operation.
Type Parameters
- TUser
The type of the user.
- TKey
The type of the key.
See Also
UserManagerExtensions Class
Microsoft.AspNet.Identity Namespace
ASP.NET Identity
Return to top