Clarify ExternalLoginInfo displayName doc comment (#7833)
This commit is contained in:
parent
a936d77845
commit
07dad89721
|
|
@ -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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue