From 7a1b867d394040533d478e14d65d963248377d6b Mon Sep 17 00:00:00 2001 From: Kirk Larkin <6025110+serpent5@users.noreply.github.com> Date: Wed, 10 Jul 2019 17:06:35 +0100 Subject: [PATCH] Correct the comment example for AuthenticationSchemeOptions.ForwardSignOut. (#11979) --- .../Authentication/Core/src/AuthenticationSchemeOptions.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Security/Authentication/Core/src/AuthenticationSchemeOptions.cs b/src/Security/Authentication/Core/src/AuthenticationSchemeOptions.cs index a547d203b40d..0f1e1b98146d 100644 --- a/src/Security/Authentication/Core/src/AuthenticationSchemeOptions.cs +++ b/src/Security/Authentication/Core/src/AuthenticationSchemeOptions.cs @@ -40,7 +40,7 @@ public virtual void Validate(string scheme) /// /// If set, this specifies a default scheme that authentication handlers should forward all authentication operations to - /// by default. The default forwarding logic will check the most specific ForwardAuthenticate/Challenge/Forbid/SignIn/SignOut + /// by default. The default forwarding logic will check the most specific ForwardAuthenticate/Challenge/Forbid/SignIn/SignOut /// setting first, followed by checking the ForwardDefaultSelector, followed by ForwardDefault. The first non null result /// will be used as the target scheme to forward to. /// @@ -76,14 +76,14 @@ public virtual void Validate(string scheme) /// /// 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. /// public string ForwardSignOut { get; set; } /// /// Used to select a default scheme for the current request that authentication handlers should forward all authentication operations to - /// by default. The default forwarding logic will check the most specific ForwardAuthenticate/Challenge/Forbid/SignIn/SignOut + /// by default. The default forwarding logic will check the most specific ForwardAuthenticate/Challenge/Forbid/SignIn/SignOut /// setting first, followed by checking the ForwardDefaultSelector, followed by ForwardDefault. The first non null result /// will be used as the target scheme to forward to. ///