Skip to content

Commit 7a1b867

Browse files
serpent5Tratcher
authored andcommitted
Correct the comment example for AuthenticationSchemeOptions.ForwardSignOut. (#11979)
1 parent 28f9816 commit 7a1b867

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Security/Authentication/Core/src/AuthenticationSchemeOptions.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public virtual void Validate(string scheme)
4040

4141
/// <summary>
4242
/// If set, this specifies a default scheme that authentication handlers should forward all authentication operations to
43-
/// by default. The default forwarding logic will check the most specific ForwardAuthenticate/Challenge/Forbid/SignIn/SignOut
43+
/// by default. The default forwarding logic will check the most specific ForwardAuthenticate/Challenge/Forbid/SignIn/SignOut
4444
/// setting first, followed by checking the ForwardDefaultSelector, followed by ForwardDefault. The first non null result
4545
/// will be used as the target scheme to forward to.
4646
/// </summary>
@@ -76,14 +76,14 @@ public virtual void Validate(string scheme)
7676

7777
/// <summary>
7878
/// If set, this specifies the target scheme that this scheme should forward SignOutAsync calls to.
79-
/// For example Context.SignOutAsync("ThisScheme") => Context.SignInAsync("ForwardSignOutValue");
79+
/// For example Context.SignOutAsync("ThisScheme") => Context.SignOutAsync("ForwardSignOutValue");
8080
/// Set the target to the current scheme to disable forwarding and allow normal processing.
8181
/// </summary>
8282
public string ForwardSignOut { get; set; }
8383

8484
/// <summary>
8585
/// Used to select a default scheme for the current request that authentication handlers should forward all authentication operations to
86-
/// by default. The default forwarding logic will check the most specific ForwardAuthenticate/Challenge/Forbid/SignIn/SignOut
86+
/// by default. The default forwarding logic will check the most specific ForwardAuthenticate/Challenge/Forbid/SignIn/SignOut
8787
/// setting first, followed by checking the ForwardDefaultSelector, followed by ForwardDefault. The first non null result
8888
/// will be used as the target scheme to forward to.
8989
/// </summary>

0 commit comments

Comments
 (0)