Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
FullMode
BoundedChannelFullMode
System.Threading.Channels.BoundedChannelOptions.FullMode
get
set
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
}
System.Threading.Channels.BoundedChannelOptions._mode
BoundedChannelFullMode _mode
Definition
BoundedChannelOptions.cs:7
System.ExceptionArgument.value
@ value
System
Threading
Channels
BoundedChannelOptions
Generated by
1.10.0