1 write to MaxResponseContentBufferSize
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthPostConfigureOptions.cs (1)
41
options.Backchannel.
MaxResponseContentBufferSize
= 1024 * 1024 * 10; // 10 MB
4 references to MaxResponseContentBufferSize
System.Net.Http (1)
System\Net\Http\HttpRequestError.cs (1)
67
/// The response exceeded a pre-configured limit such as <see cref="HttpClient.
MaxResponseContentBufferSize
"/> or <see cref="HttpClientHandler.MaxResponseHeadersLength"/>.
System.Net.Http.Json (3)
System\Net\Http\Json\HttpClientJsonExtensions.cs (3)
120
Debug.Assert(client.
MaxResponseContentBufferSize
is > 0 and <= int.MaxValue);
121
int contentLengthLimit = (int)client.
MaxResponseContentBufferSize
;
138
return new LengthLimitReadStream(contentStream, (int)client.
MaxResponseContentBufferSize
);