Click or drag to resize
ApplicationUserStoreTUserSetSecurityStampAsync Method
Sets the provided security stamp for the specified user.

Namespace: Kentico.Membership
Assembly: Kentico.Membership (in Kentico.Membership.dll) Version: 13.0.131
Syntax
C#
public Task SetSecurityStampAsync(
	TUser user,
	string stamp,
	CancellationToken cancellationToken
)

Parameters

user
Type: TUser
The user whose security stamp should be set.
stamp
Type: SystemString
The security stamp to set.
cancellationToken
Type: System.ThreadingCancellationToken
The CancellationToken used to propagate notifications that the operation should be canceled.

Return Value

Type: Task
The Task that represents the asynchronous operation.

Implements

IUserSecurityStampStore.SetSecurityStampAsync(UTP, String, CancellationToken)
Exceptions
ExceptionCondition
ArgumentNullExceptionuser is null.
See Also