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 sets the security stamp for the user.
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
'Declaration
Function SetSecurityStampAsync ( _
user As TUser, _
stamp As String _
) As Task
'Usage
Dim instance As IUserSecurityStampStore
Dim user As TUser
Dim stamp As String
Dim returnValue As Task
returnValue = instance.SetSecurityStampAsync(user, _
stamp)
Task SetSecurityStampAsync(
TUser user,
string stamp
)
Task^ SetSecurityStampAsync(
TUser user,
String^ stamp
)
abstract SetSecurityStampAsync :
user:'TUser *
stamp:string -> Task
function SetSecurityStampAsync(
user : TUser,
stamp : String
) : Task
- user
Type: TUser
The user.
- stamp
Type: System.String
The security stamp.
Type: System.Threading.Tasks.Task
The task object representing the asynchronous operation.
IUserSecurityStampStore<TUser, TKey> Interface