3 writes to _length
System.Web (3)
HttpInputStream.cs (3)
69_length += length; 82_length += length; 93_length += length;
11 references to _length
System.Web (11)
HttpInputStream.cs (11)
67if (_length + length <= _data.Length) { 68Array.Copy(data, offset, _data, _length, length); 75if (_length + length <= _fileThreshold) { 77if (_length > 0) 78Array.Copy(_data, 0, newData, 0, _length); 79Array.Copy(data, offset, newData, _length, length); 88_file.AddBytes(_data, 0, _length); 107get { return _length; } 124if (index < 0 || index >= _length) 193if (_file == null && _length == _data.Length) { 196return GetAsByteArray(0, _length);