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 deletes a role.
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
'Declaration
Function DeleteAsync ( _
role As TRole _
) As Task
'Usage
Dim instance As IRoleStore
Dim role As TRole
Dim returnValue As Task
returnValue = instance.DeleteAsync(role)
Task DeleteAsync(
TRole role
)
Task^ DeleteAsync(
TRole role
)
abstract DeleteAsync :
role:'TRole -> Task
function DeleteAsync(
role : TRole
) : Task
- role
Type: TRole
The role to delete.
Type: System.Threading.Tasks.Task
The task representing the asynchronous operation.
IRoleStore<TRole, TKey> Interface