Update comments for HandleRemoteAuthenticateAsync method
This commit is contained in:
parent
312edaafb4
commit
988bcc81ee
|
|
@ -87,6 +87,12 @@ namespace Microsoft.AspNetCore.Authentication
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Authenticate the user identity with the identity provider.
|
||||||
|
///
|
||||||
|
/// This could be done through a back channel communication with the identity provider. Exception thrown during
|
||||||
|
/// the authenticating should be saved to the AuthenticateResult.
|
||||||
|
/// </summary>
|
||||||
protected abstract Task<AuthenticateResult> HandleRemoteAuthenticateAsync();
|
protected abstract Task<AuthenticateResult> HandleRemoteAuthenticateAsync();
|
||||||
|
|
||||||
protected override async Task<AuthenticateResult> HandleAuthenticateAsync()
|
protected override async Task<AuthenticateResult> HandleAuthenticateAsync()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue