Fixed comment example for AuthenticationSchemeOptions.ForwardSignOut. (#13199)

pull/13201/head
Kirk Larkin 2019-07-08 22:03:43 +01:00 committed by Scott Addie
parent b44c62e919
commit 99e0a07f66
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ The following example shows a higher level scheme that combines lower level sche
[!code-csharp[sample](policyschemes/samples/Startup.cs?name=snippet1)]
The following example enables dynamic selection of schemes on a per request basis. That is, how to mix cookies and API authentication.
The following example enables dynamic selection of schemes on a per request basis. That is, how to mix cookies and API authentication:
<!-- REVIEW, missing If set in public Func<HttpContext, string> ForwardDefaultSelector -->

View File

@ -61,7 +61,7 @@ namespace policyschemes
/// If set, this specifies the target scheme that this scheme should forward
/// SignOutAsync calls to. For example:
/// Context.SignOutAsync("ThisScheme") =>
/// Context.SignInAsync("ForwardSignOutValue");
/// Context.SignOutAsync("ForwardSignOutValue");
/// Set the target to the current scheme to disable forwarding and allow normal
/// processing.
/// </summary>