20 references to ExternalScheme
Microsoft.AspNetCore.Identity (13)
IdentityCookiesBuilderExtensions.cs (3)
67
builder.AddCookie(IdentityConstants.
ExternalScheme
, o =>
69
o.Cookie.Name = IdentityConstants.
ExternalScheme
;
72
return new OptionsBuilder<CookieAuthenticationOptions>(builder.Services, IdentityConstants.
ExternalScheme
);
IdentityServiceCollectionExtensions.cs (4)
57
options.DefaultSignInScheme = IdentityConstants.
ExternalScheme
;
67
.AddCookie(IdentityConstants.
ExternalScheme
, o =>
69
o.Cookie.Name = IdentityConstants.
ExternalScheme
;
172
=> services.Configure(IdentityConstants.
ExternalScheme
, configure);
SignInManager.cs (6)
313
if (await _schemes.GetSchemeAsync(IdentityConstants.
ExternalScheme
) != null)
315
await Context.SignOutAsync(IdentityConstants.
ExternalScheme
);
860
if (await _schemes.GetSchemeAsync(IdentityConstants.
ExternalScheme
) != null)
862
await Context.SignOutAsync(IdentityConstants.
ExternalScheme
);
1092
var auth = await Context.AuthenticateAsync(IdentityConstants.
ExternalScheme
);
1249
await Context.SignOutAsync(IdentityConstants.
ExternalScheme
);
Microsoft.AspNetCore.Identity.UI (7)
Areas\Identity\Pages\V4\Account\Login.cshtml.cs (1)
113
await HttpContext.SignOutAsync(IdentityConstants.
ExternalScheme
);
Areas\Identity\Pages\V4\Account\Manage\ExternalLogins.cshtml.cs (2)
130
await HttpContext.SignOutAsync(IdentityConstants.
ExternalScheme
);
161
await HttpContext.SignOutAsync(IdentityConstants.
ExternalScheme
);
Areas\Identity\Pages\V5\Account\Login.cshtml.cs (1)
113
await HttpContext.SignOutAsync(IdentityConstants.
ExternalScheme
);
Areas\Identity\Pages\V5\Account\Manage\ExternalLogins.cshtml.cs (2)
130
await HttpContext.SignOutAsync(IdentityConstants.
ExternalScheme
);
161
await HttpContext.SignOutAsync(IdentityConstants.
ExternalScheme
);
IdentityServiceCollectionUIExtensions.cs (1)
44
o.DefaultSignInScheme = IdentityConstants.
ExternalScheme
;