Share via


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

 

Asynchronously gets the security stamp for a user.

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

Syntax

public virtual Task<string> GetSecurityStampAsync(
    TUser user
)
public:
virtual Task<String^>^ GetSecurityStampAsync(
    TUser user
)
abstract GetSecurityStampAsync : 
        user:'TUser -> Task<string>
override GetSecurityStampAsync : 
        user:'TUser -> Task<string>
Public Overridable Function GetSecurityStampAsync (
    user As TUser
) As Task(Of String)

Parameters

  • user
    Type: TUser

    The user.

Return Value

Type: System.Threading.Tasks.Task<String>

The task representing the asynchronous operation.

Implements

IUserSecurityStampStore<TUser, TKey>.GetSecurityStampAsync(TUser)

See Also

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

Return to top