Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CanRead

override bool System.IO.Compression.WrappedStream.CanRead
get

Definition at line 42 of file WrappedStream.cs.

43 {
44 get
45 {
46 if (!_isDisposed)
47 {
48 return _baseStream.CanRead;
49 }
50 return false;
51 }
52 }

Referenced by System.IO.Compression.WrappedStream.ThrowIfCantRead().