Share via


UserStore<TUser, TRole, TKey, TUserLogin, TUserRole, TUserClaim>.UpdateAsync Method (TUser)

 

Asynchronously updates an entity.

Namespace:   Microsoft.AspNet.Identity.EntityFramework
Assembly:  Microsoft.AspNet.Identity.EntityFramework (in Microsoft.AspNet.Identity.EntityFramework.dll)

Syntax

public virtual Task UpdateAsync(
    TUser user
)
public:
virtual Task^ UpdateAsync(
    TUser user
)
abstract UpdateAsync : 
        user:'TUser -> Task
override UpdateAsync : 
        user:'TUser -> Task
Public Overridable Function UpdateAsync (
    user As TUser
) As Task

Parameters

  • user
    Type: TUser

    The user.

Return Value

Type: System.Threading.Tasks.Task

The task representing the asynchronous operation.

Implements

IUserStore<TUser, TKey>.UpdateAsync(TUser)

See Also

UserStore<TUser, TRole, TKey, TUserLogin, TUserRole, TUserClaim> Class
Microsoft.AspNet.Identity.EntityFramework Namespace
ASP.NET Identity

Return to top