UserManager<TUser>.GenerateConcurrencyStampAsync(TUser) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Generates a value suitable for use in concurrency tracking.
public:
virtual System::Threading::Tasks::Task<System::String ^> ^ GenerateConcurrencyStampAsync(TUser user);
public virtual System.Threading.Tasks.Task<string> GenerateConcurrencyStampAsync (TUser user);
abstract member GenerateConcurrencyStampAsync : 'User -> System.Threading.Tasks.Task<string>
override this.GenerateConcurrencyStampAsync : 'User -> System.Threading.Tasks.Task<string>
Public Overridable Function GenerateConcurrencyStampAsync (user As TUser) As Task(Of String)
Parameters
- user
- TUser
The user to generate the stamp for.
Returns
The Task that represents the asynchronous operation, containing the security
stamp for the specified user
.