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

◆ CancelAfter() [1/3]

void System.Threading.CancellationTokenSource.CancelAfter ( int millisecondsDelay)
inlineinherited

Definition at line 383 of file CancellationTokenSource.cs.

384 {
385 if (millisecondsDelay < -1)
386 {
387 ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument.millisecondsDelay);
388 }
390 }

References System.Threading.CancellationTokenSource.CancelAfter(), System.millisecondsDelay, and System.ThrowHelper.ThrowArgumentOutOfRangeException().