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 inserts a new user.
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
'Declaration
Function CreateAsync ( _
user As TUser _
) As Task
'Usage
Dim instance As IUserStore
Dim user As TUser
Dim returnValue As Task
returnValue = instance.CreateAsync(user)
Task CreateAsync(
TUser user
)
Task^ CreateAsync(
TUser user
)
abstract CreateAsync :
user:'TUser -> Task
function CreateAsync(
user : TUser
) : Task
- user
Type: TUser
The user.
Type: System.Threading.Tasks.Task
The task object representing the asynchronous operation.
IUserStore<TUser, TKey> Interface