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

◆ Capacity

int System.Threading.Channels.BoundedChannelOptions.Capacity
getset

Definition at line 9 of file BoundedChannelOptions.cs.

10 {
11 get
12 {
13 return _capacity;
14 }
15 set
16 {
17 if (value < 1)
18 {
19 throw new ArgumentOutOfRangeException("value");
20 }
22 }
23 }

Referenced by System.Threading.Channels.BoundedChannelOptions.BoundedChannelOptions().