1 write to _endInSuperStream
System.Formats.Tar (1)
System\Formats\Tar\SubReadStream.cs (1)
32_endInSuperStream = startPosition + maxLength;
8 references to _endInSuperStream
System.Formats.Tar (8)
System\Formats\Tar\SeekableSubReadStream.cs (4)
38ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(value, _endInSuperStream); 52if ((ulong)(_positionInSuperStream + count) > (ulong)_endInSuperStream) 54count = Math.Max(0, (int)(_endInSuperStream - _positionInSuperStream)); 89SeekOrigin.End => _endInSuperStream + offset,
System\Formats\Tar\SubReadStream.cs (4)
43return _endInSuperStream - _startInSuperStream; 67private long Remaining => _endInSuperStream - _positionInSuperStream; 76_positionInSuperStream = _endInSuperStream; 85_positionInSuperStream = _endInSuperStream;