5 writes to _position
Microsoft.Build (5)
Logging\BinaryLogger\Postprocessing\SubStream.cs (5)
51_position += read; 62_position++; 76_position += read; 85_position += read; 93_position += read;
7 references to _position
Microsoft.Build (7)
Logging\BinaryLogger\Postprocessing\SubStream.cs (7)
33public bool IsAtEnd => _position >= _length; 43public override long Position { get => _position; set => throw new NotImplementedException(); } 49count = Math.Min((int)Math.Max(Length - _position, 0), count); 57if (Length - _position > 0) 72count = Math.Min((int)Math.Max(Length - _position, 0), count); 83buffer = buffer.Slice(0, Math.Min((int)Math.Max(Length - _position, 0), buffer.Length)); 91buffer = buffer.Slice(0, Math.Min((int)Math.Max(Length - _position, 0), buffer.Length));