3 writes to _currentBlockSize
Microsoft.Maui.Controls (3)
Internals\ImageParser.cs (3)
122 _currentBlockSize = Read(); 137 _currentBlockSize = Read(); 150 _currentBlockSize = Read();
8 references to _currentBlockSize
Microsoft.Maui.Controls (8)
Internals\ImageParser.cs (8)
68 get { return _currentBlockSize; } 123 int bytesRead = await ReadAsync(_blockBuffer, _currentBlockSize).ConfigureAwait(false); 125 if (bytesRead < _currentBlockSize) 130 Debug.Assert(_currentBlockSize == bytesRead); 138 while (_currentBlockSize > 0) 142 _stream.Seek(_currentBlockSize, SeekOrigin.Current); 143 _currentPosition += _currentBlockSize; 147 await ReadAsync(_blockBuffer, _currentBlockSize).ConfigureAwait(false);