UserManagerExtensions.SetLockoutEnabled<TUser, TKey> Method
Sets whether the user allows lockout.
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
'Declaration
<ExtensionAttribute> _
Public Shared Function SetLockoutEnabled(Of TUser As {Class, Object, IUser(Of TKey)}, TKey As {Object, IEquatable(Of TKey)}) ( _
manager As UserManager(Of TUser, TKey), _
userId As TKey, _
enabled As Boolean _
) As IdentityResult
'Usage
Dim manager As UserManager(Of TUser, TKey)
Dim userId As TKey
Dim enabled As Boolean
Dim returnValue As IdentityResult
returnValue = manager.SetLockoutEnabled(userId, _
enabled)
public static IdentityResult SetLockoutEnabled<TUser, TKey>(
this UserManager<TUser, TKey> manager,
TKey userId,
bool enabled
)
where TUser : class, Object, IUser<TKey>
where TKey : Object, IEquatable<TKey>
[ExtensionAttribute]
public:
generic<typename TUser, typename TKey>
where TUser : ref class, Object, IUser<TKey>
where TKey : Object, IEquatable<TKey>
static IdentityResult^ SetLockoutEnabled(
UserManager<TUser, TKey>^ manager,
TKey userId,
bool enabled
)
static member SetLockoutEnabled :
manager:UserManager<'TUser, 'TKey> *
userId:'TKey *
enabled:bool -> IdentityResult when 'TUser : not struct and Object and IUser<'TKey> when 'TKey : Object and IEquatable<'TKey>
JScript does not support generic types and methods.
- TUser
The type of the user.
- TKey
The type of the key.
- manager
Type: Microsoft.AspNet.Identity.UserManager<TUser, TKey>
The user manager.
- userId
Type: TKey
The user ID.
- enabled
Type: System.Boolean
true to enable the lockout; otherwise, false.
Type: Microsoft.AspNet.Identity.IdentityResult
The result of the operation.
In Visual Basic and C#, you can call this method as an instance method on any object of type UserManager<TUser, TKey>. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.108) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.108).