4 references to BlockSize
System.Windows.Extensions (4)
System\Media\SoundPlayer.cs (4)
500
_streamData = new byte[
BlockSize
];
503
int readBytes = await _stream.ReadAsync(_streamData.AsMemory(_currentPos,
BlockSize
), cancellationToken).ConfigureAwait(false);
509
if (_streamData.Length < _currentPos +
BlockSize
)
515
readBytes = await _stream.ReadAsync(_streamData.AsMemory(_currentPos,
BlockSize
), cancellationToken).ConfigureAwait(false);