5 writes to MaxResponseContentBufferSize
Microsoft.AspNetCore.Authentication.JwtBearer (1)
JwtBearerPostConfigureOptions.cs (1)
57options.Backchannel.MaxResponseContentBufferSize = 1024 * 1024 * 10; // 10 MB
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthPostConfigureOptions.cs (1)
41options.Backchannel.MaxResponseContentBufferSize = 1024 * 1024 * 10; // 10 MB
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
OpenIdConnectPostConfigureOptions.cs (1)
73options.Backchannel.MaxResponseContentBufferSize = 1024 * 1024 * 10; // 10 MB
Microsoft.AspNetCore.Authentication.Twitter (1)
TwitterPostConfigureOptions.cs (1)
50options.Backchannel.MaxResponseContentBufferSize = 1024 * 1024 * 10; // 10 MB
Microsoft.AspNetCore.Authentication.WsFederation (1)
WsFederationPostConfigureOptions.cs (1)
68options.Backchannel.MaxResponseContentBufferSize = 1024 * 1024 * 10; // 10 MB
3 references to MaxResponseContentBufferSize
System.Net.Http.Json (3)
System\Net\Http\Json\HttpClientJsonExtensions.cs (3)
120Debug.Assert(client.MaxResponseContentBufferSize is > 0 and <= int.MaxValue); 121int contentLengthLimit = (int)client.MaxResponseContentBufferSize; 138return new LengthLimitReadStream(contentStream, (int)client.MaxResponseContentBufferSize);