IUserAuthenticationTokenStore<TUser>.SetTokenAsync 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.
Sets the token value for a particular user.
public:
 System::Threading::Tasks::Task ^ SetTokenAsync(TUser user, System::String ^ loginProvider, System::String ^ name, System::String ^ value, System::Threading::CancellationToken cancellationToken);
	public System.Threading.Tasks.Task SetTokenAsync(TUser user, string loginProvider, string name, string value, System.Threading.CancellationToken cancellationToken);
	public System.Threading.Tasks.Task SetTokenAsync(TUser user, string loginProvider, string name, string? value, System.Threading.CancellationToken cancellationToken);
	abstract member SetTokenAsync : 'User * string * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task
	Public Function SetTokenAsync (user As TUser, loginProvider As String, name As String, value As String, cancellationToken As CancellationToken) As Task
	Parameters
- user
 - TUser
 
The user.
- loginProvider
 - String
 
The authentication provider for the token.
- name
 - String
 
The name of the token.
- value
 - String
 
The value of the token.
- cancellationToken
 - CancellationToken
 
The CancellationToken used to propagate notifications that the operation should be canceled.
Returns
The Task that represents the asynchronous operation.