Update comments for HandleRemoteAuthenticateAsync method

This commit is contained in:
Troy Dai 2016-07-20 16:36:33 -07:00
parent 312edaafb4
commit 988bcc81ee
1 changed files with 6 additions and 0 deletions

View File

@ -87,6 +87,12 @@ namespace Microsoft.AspNetCore.Authentication
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 override async Task<AuthenticateResult> HandleAuthenticateAsync()