2 writes to _maxResponseDrainSize
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\HttpConnectionSettings.cs (1)
109_maxResponseDrainSize = _maxResponseDrainSize,
System\Net\Http\SocketsHttpHandler\SocketsHttpHandler.cs (1)
165_settings._maxResponseDrainSize = value;
5 references to _maxResponseDrainSize
System.Net.Http (5)
System\Net\Http\SocketsHttpHandler\HttpConnection.cs (1)
2086if (!await responseStream.DrainAsync(_pool.Settings._maxResponseDrainSize).ConfigureAwait(false) ||
System\Net\Http\SocketsHttpHandler\HttpConnectionSettings.cs (1)
109_maxResponseDrainSize = _maxResponseDrainSize,
System\Net\Http\SocketsHttpHandler\HttpContentReadStream.cs (2)
78bool drained = await DrainAsync(connection._pool.Settings._maxResponseDrainSize).ConfigureAwait(false); 84$"Connection drain failed when MaxResponseDrainSize={connection._pool.Settings._maxResponseDrainSize} bytes or MaxResponseDrainTime=={connection._pool.Settings._maxResponseDrainTime} exceeded");
System\Net\Http\SocketsHttpHandler\SocketsHttpHandler.cs (1)
159get => _settings._maxResponseDrainSize;