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

◆ Wait() [5/6]

bool System.Threading.ManualResetEventSlim.Wait ( TimeSpan timeout)
inlineinherited

Definition at line 183 of file ManualResetEventSlim.cs.

184 {
185 long num = (long)timeout.TotalMilliseconds;
186 if (num < -1 || num > int.MaxValue)
187 {
188 throw new ArgumentOutOfRangeException("timeout");
189 }
190 return Wait((int)num, CancellationToken.None);
191 }

References System.Threading.CancellationToken.None, System.timeout, and System.Threading.ManualResetEventSlim.Wait().