2 writes to SignOutScheme
Microsoft.AspNetCore.Authentication.OpenIdConnect (2)
OpenIdConnectConfigureOptions.cs (1)
79
options.
SignOutScheme
= configSection[nameof(options.SignOutScheme)] ?? options.SignOutScheme;
OpenIdConnectPostConfigureOptions.cs (1)
42
options.
SignOutScheme
= options.SignInScheme;
6 references to SignOutScheme
Microsoft.AspNetCore.Authentication.OpenIdConnect (6)
OpenIdConnectConfigureOptions.cs (2)
79
options.SignOutScheme = configSection[nameof(options.
SignOutScheme
)] ?? options.
SignOutScheme
;
OpenIdConnectHandler.cs (3)
161
var principal = (await Context.AuthenticateAsync(Options.
SignOutScheme
))?.Principal;
200
await Context.SignOutAsync(Options.
SignOutScheme
);
247
message.IdTokenHint = await Context.GetTokenAsync(Options.
SignOutScheme
, OpenIdConnectParameterNames.IdToken);
OpenIdConnectPostConfigureOptions.cs (1)
40
if (string.IsNullOrEmpty(options.
SignOutScheme
))