1 write to _maxBufferSize
System.Net.Http (1)
System\Net\Http\HttpContent.cs (1)
816_maxBufferSize = maxBufferSize;
5 references to _maxBufferSize
System.Net.Http (5)
System\Net\Http\HttpContent.cs (5)
772/// A write-only stream that limits the total length of the content to <see cref="_maxBufferSize"/>. 901if (_maxBufferSize - _totalLength < buffer.Length) 903throw CreateOverCapacityException(_maxBufferSize); 923Debug.Assert(_totalLength + buffer.Length <= _maxBufferSize); 946int remainingUntilMaxCapacity = _maxBufferSize - currentTotalCapacity;