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)
117get => _maxResponseContentBufferSize; 203using var buffer = new HttpContent.LimitArrayPoolWriteStream(_maxResponseContentBufferSize, (int)c.Headers.ContentLength.GetValueOrDefault()); 284new HttpContent.LimitMemoryStream(_maxResponseContentBufferSize, (int)contentLength.GetValueOrDefault()) : 285new HttpContent.LimitArrayPoolWriteStream(_maxResponseContentBufferSize); 487response.Content.LoadIntoBuffer(_maxResponseContentBufferSize, cts.Token); 542await response.Content.LoadIntoBufferAsync(_maxResponseContentBufferSize, cts.Token).ConfigureAwait(false);