Correct the comment example for AuthenticationSchemeOptions.ForwardSignOut. (#11979)

This commit is contained in:
Kirk Larkin 2019-07-10 17:06:35 +01:00 committed by Chris Ross
parent 28f9816d46
commit 7a1b867d39
1 changed files with 3 additions and 3 deletions

View File

@ -76,7 +76,7 @@ namespace Microsoft.AspNetCore.Authentication
/// <summary> /// <summary>
/// If set, this specifies the target scheme that this scheme should forward SignOutAsync calls to. /// If set, this specifies the target scheme that this scheme should forward SignOutAsync calls to.
/// For example Context.SignOutAsync("ThisScheme") => Context.SignInAsync("ForwardSignOutValue"); /// For example Context.SignOutAsync("ThisScheme") => Context.SignOutAsync("ForwardSignOutValue");
/// Set the target to the current scheme to disable forwarding and allow normal processing. /// Set the target to the current scheme to disable forwarding and allow normal processing.
/// </summary> /// </summary>
public string ForwardSignOut { get; set; } public string ForwardSignOut { get; set; }