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

◆ BoundedChannelOptions()

System.Threading.Channels.BoundedChannelOptions.BoundedChannelOptions ( int capacity)
inline

Definition at line 42 of file BoundedChannelOptions.cs.

43 {
44 if (capacity < 1)
45 {
46 throw new ArgumentOutOfRangeException("capacity");
47 }
49 }

References System.capacity, and System.Threading.Channels.BoundedChannelOptions.Capacity.