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

 

Asynchronously sets the security stamp for the user.

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

Syntax

public virtual Task SetSecurityStampAsync(
    TUser user,
    string stamp
)
public:
virtual Task^ SetSecurityStampAsync(
    TUser user,
    String^ stamp
)
abstract SetSecurityStampAsync : 
        user:'TUser *
        stamp:string -> Task
override SetSecurityStampAsync : 
        user:'TUser *
        stamp:string -> Task
Public Overridable Function SetSecurityStampAsync (
    user As TUser,
    stamp As String
) As Task

Parameters

  • user
    Type: TUser

    The user.

Return Value

Type: System.Threading.Tasks.Task

The task representing the asynchronous operation.

Implements

IUserSecurityStampStore<TUser, TKey>.SetSecurityStampAsync(TUser, String)

See Also

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

Return to top