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