Base:
4 references to CanRead
System.IO.Compression (4)
System\IO\Compression\DeflateZLib\DeflateStream.cs (2)
884if (!CanRead) throw new NotSupportedException(); 894if (!CanRead) throw new NotSupportedException();
System\IO\Compression\GZipStream.cs (1)
47public override bool CanRead => _deflateStream?.CanRead ?? false;
System\IO\Compression\ZLibStream.cs (1)
61public override bool CanRead => _deflateStream?.CanRead ?? false;