2 writes to _maxResponseContentBufferSize
System.Net.Http (2)
System\Net\Http\HttpClient.cs (2)
130
_maxResponseContentBufferSize
= (int)value;
149
_maxResponseContentBufferSize
= HttpContent.MaxBufferSize;
6 references to _maxResponseContentBufferSize
System.Net.Http (6)
System\Net\Http\HttpClient.cs (6)
117
get =>
_maxResponseContentBufferSize
;
203
using var buffer = new HttpContent.LimitArrayPoolWriteStream(
_maxResponseContentBufferSize
, (int)c.Headers.ContentLength.GetValueOrDefault());
284
new HttpContent.LimitMemoryStream(
_maxResponseContentBufferSize
, (int)contentLength.GetValueOrDefault()) :
285
new HttpContent.LimitArrayPoolWriteStream(
_maxResponseContentBufferSize
);
487
response.Content.LoadIntoBuffer(
_maxResponseContentBufferSize
, cts.Token);
542
await response.Content.LoadIntoBufferAsync(
_maxResponseContentBufferSize
, cts.Token).ConfigureAwait(false);