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
"/>.
901
if (
_maxBufferSize
- _totalLength < buffer.Length)
903
throw CreateOverCapacityException(
_maxBufferSize
);
923
Debug.Assert(_totalLength + buffer.Length <=
_maxBufferSize
);
946
int remainingUntilMaxCapacity =
_maxBufferSize
- currentTotalCapacity;