3 writes to SignedOutRedirectUri
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
OpenIdConnectConfigureOptions.cs (1)
77
options.
SignedOutRedirectUri
= configSection[nameof(options.SignedOutRedirectUri)] ?? options.SignedOutRedirectUri;
Microsoft.AspNetCore.Authentication.Test (2)
OpenIdConnect\OpenIdConnectTests.cs (2)
236
o.
SignedOutRedirectUri
= "https://example.com/postlogout";
267
o.
SignedOutRedirectUri
= "https://example.com/postlogout";
5 references to SignedOutRedirectUri
Microsoft.AspNetCore.Authentication.OpenIdConnect (5)
Events\OpenIdConnectEvents.cs (2)
39
/// Invoked before redirecting to the <see cref="OpenIdConnectOptions.
SignedOutRedirectUri
"/> at the end of a remote sign-out flow.
97
/// Invoked before redirecting to the <see cref="OpenIdConnectOptions.
SignedOutRedirectUri
"/> at the end of a remote sign-out flow.
OpenIdConnectConfigureOptions.cs (2)
77
options.SignedOutRedirectUri = configSection[nameof(options.
SignedOutRedirectUri
)] ?? options.
SignedOutRedirectUri
;
OpenIdConnectHandler.cs (1)
238
properties.RedirectUri = BuildRedirectUriIfRelative(Options.
SignedOutRedirectUri
);