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

◆ Capacity

override int System.IO.UnmanagedMemoryStreamWrapper.Capacity
getset

Definition at line 16 of file UnmanagedMemoryStreamWrapper.cs.

17 {
18 get
19 {
20 return (int)_unmanagedStream.Capacity;
21 }
22 set
23 {
24 throw new IOException(SR.IO_FixedCapacity);
25 }
26 }