SignInManager<TUser>.UpdateExternalAuthenticationTokensAsync Method

Definition

Stores any authentication tokens found in the external authentication cookie into the associated user.

public:
 virtual System::Threading::Tasks::Task<Microsoft::AspNetCore::Identity::IdentityResult ^> ^ UpdateExternalAuthenticationTokensAsync(Microsoft::AspNetCore::Identity::ExternalLoginInfo ^ externalLogin);
public virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult> UpdateExternalAuthenticationTokensAsync (Microsoft.AspNetCore.Identity.ExternalLoginInfo externalLogin);
abstract member UpdateExternalAuthenticationTokensAsync : Microsoft.AspNetCore.Identity.ExternalLoginInfo -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
override this.UpdateExternalAuthenticationTokensAsync : Microsoft.AspNetCore.Identity.ExternalLoginInfo -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.IdentityResult>
Public Overridable Function UpdateExternalAuthenticationTokensAsync (externalLogin As ExternalLoginInfo) As Task(Of IdentityResult)

Parameters

externalLogin
ExternalLoginInfo

The information from the external login provider.

Returns

Task<IdentityResult>

The Task that represents the asynchronous operation, containing the IdentityResult of the operation.

Applies to