Clarify ExternalLoginInfo displayName doc comment (#7833)

This commit is contained in:
Hao Kung 2019-02-27 15:02:20 -08:00 committed by GitHub
parent a936d77845
commit 07dad89721
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ namespace Microsoft.AspNetCore.Identity
/// <param name="principal">The <see cref="ClaimsPrincipal"/> to associate with this login.</param>
/// <param name="loginProvider">The provider associated with this login information.</param>
/// <param name="providerKey">The unique identifier for this user provided by the login provider.</param>
/// <param name="displayName">The display name for this user provided by the login provider.</param>
/// <param name="displayName">The display name for the login provider.</param>
public ExternalLoginInfo(ClaimsPrincipal principal, string loginProvider, string providerKey,
string displayName) : base(loginProvider, providerKey, displayName)
{
@ -36,4 +36,4 @@ namespace Microsoft.AspNetCore.Identity
/// </summary>
public IEnumerable<AuthenticationToken> AuthenticationTokens { get; set; }
}
}
}