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