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

◆ FullMode

BoundedChannelFullMode System.Threading.Channels.BoundedChannelOptions.FullMode
getset

Definition at line 25 of file BoundedChannelOptions.cs.

26 {
27 get
28 {
29 return _mode;
30 }
31 set
32 {
33 if ((uint)value <= 3u)
34 {
35 _mode = value;
36 return;
37 }
38 throw new ArgumentOutOfRangeException("value");
39 }
40 }