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

◆ VerifyDelegateNotNull()

void System.ComponentModel.AsyncOperation.VerifyDelegateNotNull ( SendOrPostCallback d)
inlineprivate

Definition at line 80 of file AsyncOperation.cs.

81 {
82 if (d == null)
83 {
84 throw new ArgumentNullException("d", System.SR.Async_NullDelegate);
85 }
86 }
static string Async_NullDelegate
Definition SR.cs:14
Definition SR.cs:7

References System.SR.Async_NullDelegate.

Referenced by System.ComponentModel.AsyncOperation.PostCore().