Correct the comment example for AuthenticationSchemeOptions.ForwardSignOut. (#11979)
This commit is contained in:
parent
28f9816d46
commit
7a1b867d39
|
|
@ -40,7 +40,7 @@ namespace Microsoft.AspNetCore.Authentication
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// If set, this specifies a default scheme that authentication handlers should forward all authentication operations to
|
/// 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
|
/// 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.
|
/// will be used as the target scheme to forward to.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
@ -76,14 +76,14 @@ 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; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used to select a default scheme for the current request that authentication handlers should forward all authentication operations to
|
/// 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
|
/// 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.
|
/// will be used as the target scheme to forward to.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue