8 references to AddScheme
Identity.DefaultUI.WebSite (1)
Services\ContosoAuthenticationBuilderExtensions.cs (1)
13builder.AddScheme<ContosoAuthenticationOptions, ContosoAuthenticationHandler>(
Microsoft.AspNetCore.Authentication (2)
AuthenticationBuilder.cs (2)
81=> AddScheme<TOptions, THandler>(authenticationScheme, displayName: null, configureOptions: configureOptions); 98return AddScheme<TOptions, THandler>(authenticationScheme, displayName, configureOptions: configureOptions);
Microsoft.AspNetCore.Authentication.Cookies (1)
CookieExtensions.cs (1)
81return builder.AddScheme<CookieAuthenticationOptions, CookieAuthenticationHandler>(authenticationScheme, displayName, configureOptions);
Microsoft.AspNetCore.Authentication.JwtBearer (1)
JwtBearerExtensions.cs (1)
79return builder.AddScheme<JwtBearerOptions, JwtBearerHandler>(authenticationScheme, displayName, configureOptions);
Microsoft.AspNetCore.Authentication.Negotiate (1)
NegotiateExtensions.cs (1)
73return builder.AddScheme<NegotiateOptions, NegotiateHandler>(authenticationScheme, displayName, configureOptions);
Microsoft.AspNetCore.Tests (2)
WebApplicationTests.cs (2)
2441.AddScheme<AuthenticationSchemeOptions, UberHandler>("testSchemeName", "testDisplayName", _ => { }); 2481.AddScheme<AuthenticationSchemeOptions, UberHandler>("testSchemeName", "testDisplayName", _ => { });