2 writes to Backchannel
Aspire.Keycloak.Authentication (1)
AspireKeycloakExtensions.cs (1)
89
options.
Backchannel
= httpClientFactory.CreateClient(KeycloakBackchannel);
Microsoft.AspNetCore.Authentication.JwtBearer (1)
JwtBearerPostConfigureOptions.cs (1)
54
options.
Backchannel
= new HttpClient(options.BackchannelHttpHandler ?? new HttpClientHandler());
5 references to Backchannel
Microsoft.AspNetCore.Authentication.JwtBearer (5)
JwtBearerPostConfigureOptions.cs (5)
52
if (options.
Backchannel
== null)
55
options.
Backchannel
.DefaultRequestHeaders.UserAgent.ParseAdd("Microsoft ASP.NET Core JwtBearer handler");
56
options.
Backchannel
.Timeout = options.BackchannelTimeout;
57
options.
Backchannel
.MaxResponseContentBufferSize = 1024 * 1024 * 10; // 10 MB
61
new HttpDocumentRetriever(options.
Backchannel
) { RequireHttps = options.RequireHttpsMetadata })