3 writes to _position
Microsoft.Build (3)
Logging\BinaryLogger\Postprocessing\TransparentReadStream.cs (3)
93
_position
+= cnt;
104
_position
++;
126
_position
+= cnt;
10 references to _position
Microsoft.Build (10)
Logging\BinaryLogger\Postprocessing\TransparentReadStream.cs (10)
58
set { _maxAllowedPosition = value.HasValue ?
_position
+ value.Value : long.MaxValue; }
63
_maxAllowedPosition == long.MaxValue ? 0 : (int)(_maxAllowedPosition -
_position
);
71
get =>
_position
;
72
set => this.SkipBytes(value -
_position
);
87
if (
_position
+ count > _maxAllowedPosition)
89
count = (int)(_maxAllowedPosition -
_position
);
99
if (
_position
+ 1 <= _maxAllowedPosition)
114
if (
_position
+ count > _maxAllowedPosition)
116
count = (int)(_maxAllowedPosition -
_position
);
165
return
_position
;