3 writes to SignedOutCallbackPath
Microsoft.AspNetCore.Authentication.OpenIdConnect (2)
OpenIdConnectConfigureOptions.cs (1)
76options.SignedOutCallbackPath = new PathString(configSection[nameof(options.SignedOutCallbackPath)] ?? options.SignedOutCallbackPath.Value);
OpenIdConnectOptions.cs (1)
45SignedOutCallbackPath = new PathString("/signout-callback-oidc");
Microsoft.AspNetCore.Authentication.Test (1)
OpenIdConnect\OpenIdConnectTests.cs (1)
235o.SignedOutCallbackPath = "/thelogout";
5 references to SignedOutCallbackPath
Microsoft.AspNetCore.Authentication.OpenIdConnect (5)
OpenIdConnectConfigureOptions.cs (2)
76options.SignedOutCallbackPath = new PathString(configSection[nameof(options.SignedOutCallbackPath)] ?? options.SignedOutCallbackPath.Value);
OpenIdConnectHandler.cs (3)
95else if (Options.SignedOutCallbackPath.HasValue && Options.SignedOutCallbackPath == Request.Path) 232PostLogoutRedirectUri = BuildRedirectUriIfRelative(Options.SignedOutCallbackPath)