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