Fix a typo in the SignInManager docs

This commit is contained in:
Dennis Daume 2016-07-06 20:52:17 +02:00 committed by Hao Kung
parent d676e8f068
commit f73f668e2b
1 changed files with 2 additions and 2 deletions

View File

@ -506,7 +506,7 @@ namespace Microsoft.AspNetCore.Identity
/// Configures the redirect URL and user identifier for the specified external login <paramref name="provider"/>.
/// </summary>
/// <param name="provider">The provider to configure.</param>
/// <param name="redirectUrl">The external login URL users should be redirected to during the login glow.</param>
/// <param name="redirectUrl">The external login URL users should be redirected to during the login flow.</param>
/// <param name="userId">The current user's identifier, which will be used to provide CSRF protection.</param>
/// <returns>A configured <see cref="AuthenticationProperties"/>.</returns>
public virtual AuthenticationProperties ConfigureExternalAuthenticationProperties(string provider, string redirectUrl, string userId = null)
@ -629,4 +629,4 @@ namespace Microsoft.AspNetCore.Identity
public string LoginProvider { get; set; }
}
}
}
}