Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
MaxMessages
int System.Threading.Tasks.Dataflow.DataflowLinkOptions.MaxMessages
get
set
Definition at line
34
of file
DataflowLinkOptions.cs
.
35
{
36
get
37
{
38
return
_maxNumberOfMessages
;
39
}
40
set
41
{
42
if
(
value
< 1 &&
value
!= -1)
43
{
44
throw
new
ArgumentOutOfRangeException(
"value"
);
45
}
46
_maxNumberOfMessages
=
value
;
47
}
48
}
System.Threading.Tasks.Dataflow.DataflowLinkOptions._maxNumberOfMessages
int _maxNumberOfMessages
Definition
DataflowLinkOptions.cs:10
System.ExceptionArgument.value
@ value
System
Threading
Tasks
Dataflow
DataflowLinkOptions
Generated by
1.10.0