13 references to ExternalScheme
Microsoft.AspNetCore.Identity (13)
IdentityCookiesBuilderExtensions.cs (3)
67builder.AddCookie(IdentityConstants.ExternalScheme, o => 69o.Cookie.Name = IdentityConstants.ExternalScheme; 72return new OptionsBuilder<CookieAuthenticationOptions>(builder.Services, IdentityConstants.ExternalScheme);
IdentityServiceCollectionExtensions.cs (4)
57options.DefaultSignInScheme = IdentityConstants.ExternalScheme; 67.AddCookie(IdentityConstants.ExternalScheme, o => 69o.Cookie.Name = IdentityConstants.ExternalScheme; 172=> services.Configure(IdentityConstants.ExternalScheme, configure);
SignInManager.cs (6)
313if (await _schemes.GetSchemeAsync(IdentityConstants.ExternalScheme) != null) 315await Context.SignOutAsync(IdentityConstants.ExternalScheme); 860if (await _schemes.GetSchemeAsync(IdentityConstants.ExternalScheme) != null) 862await Context.SignOutAsync(IdentityConstants.ExternalScheme); 1092var auth = await Context.AuthenticateAsync(IdentityConstants.ExternalScheme); 1249await Context.SignOutAsync(IdentityConstants.ExternalScheme);