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