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.
Asynchronously adds a user to a role.
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
'Declaration
Function AddToRoleAsync ( _
user As TUser, _
roleName As String _
) As Task
'Usage
Dim instance As IUserRoleStore
Dim user As TUser
Dim roleName As String
Dim returnValue As Task
returnValue = instance.AddToRoleAsync(user, _
roleName)
Task AddToRoleAsync(
TUser user,
string roleName
)
Task^ AddToRoleAsync(
TUser user,
String^ roleName
)
abstract AddToRoleAsync :
user:'TUser *
roleName:string -> Task
function AddToRoleAsync(
user : TUser,
roleName : String
) : Task
- user
Type: TUser
The user.
- roleName
Type: System.String
The name of the role.
Type: System.Threading.Tasks.Task
The task object representing the asynchronous operation.
IUserRoleStore<TUser, TKey> Interface