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

◆ CanRead

override bool System.IO.UnmanagedMemoryStream.CanRead
getinherited

Definition at line 27 of file UnmanagedMemoryStream.cs.

28 {
29 get
30 {
31 if (_isOpen)
32 {
33 return (_access & FileAccess.Read) != 0;
34 }
35 return false;
36 }
37 }

Referenced by System.IO.UnmanagedMemoryStream.EnsureReadable().