UserStore<TUser, TRole, TKey, TUserLogin, TUserRole, TUserClaim>.GetSecurityStampAsync Method
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
'Declaration
Public Function GetSecurityStampAsync ( _
user As TUser _
) As Task(Of String)
'Usage
Dim instance As UserStore
Dim user As TUser
Dim returnValue As Task(Of String)
returnValue = instance.GetSecurityStampAsync(user)
public Task<string> GetSecurityStampAsync(
TUser user
)
public:
virtual Task<String^>^ GetSecurityStampAsync(
TUser user
) sealed
abstract GetSecurityStampAsync :
user:'TUser -> Task<string>
override GetSecurityStampAsync :
user:'TUser -> Task<string>
public final function GetSecurityStampAsync(
user : TUser
) : Task<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
Reference
UserStore<TUser, TRole, TKey, TUserLogin, TUserRole, TUserClaim> Class
Microsoft.AspNet.Identity.EntityFramework Namespace