1 write to _fileThreshold
System.Web (1)
HttpInputStream.cs (1)
44
_fileThreshold
= fileThreshold;
8 references to _fileThreshold
System.Web (8)
HttpInputStream.cs (8)
47
if (_expectedLength >= 0 && _expectedLength <
_fileThreshold
)
50
_data = new byte[
_fileThreshold
];
75
if (_length + length <=
_fileThreshold
) {
76
byte[] newData = new byte[
_fileThreshold
];
168
byte[] buf = new byte[bytesRemaining >
_fileThreshold
?
_fileThreshold
: bytesRemaining];
171
int bytesToRead = bytesRemaining >
_fileThreshold
?
_fileThreshold
: bytesRemaining;