Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Interval
double System.Timers.Timer.Interval
get
set
Definition at line
116
of file
Timer.cs
.
117
{
118
get
119
{
120
return
_interval
;
121
}
122
set
123
{
124
if
(
value
<= 0.0)
125
{
126
throw
new
ArgumentException
(
System
.
SR
.
Format
(
System
.
SR
.
TimerInvalidInterval
,
value
, 0));
127
}
128
_interval
=
value
;
129
if
(
_timer
!=
null
)
130
{
131
UpdateTimer
();
132
}
133
}
134
}
System.SR.Format
static string Format(string resourceFormat, object p1)
Definition
SR.cs:118
System.SR.TimerInvalidInterval
static string TimerInvalidInterval
Definition
SR.cs:64
System.SR
Definition
SR.cs:7
System.Timers.Timer.UpdateTimer
void UpdateTimer()
Definition
Timer.cs:212
System.Timers.Timer._interval
double _interval
Definition
Timer.cs:11
System.Timers.Timer._timer
System.Threading.Timer _timer
Definition
Timer.cs:27
System.Xml.ExceptionType.ArgumentException
@ ArgumentException
System.ExceptionArgument.value
@ value
System
Definition
BlockingCollection.cs:8
System
Timers
Timer
Generated by
1.10.0