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