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

◆ GetSafeWaitHandle()

static SafeWaitHandle System.Threading.WaitHandleExtensions.GetSafeWaitHandle ( this WaitHandle waitHandle)
inlinestatic

Definition at line 7 of file WaitHandleExtensions.cs.

8 {
9 if (waitHandle == null)
10 {
11 throw new ArgumentNullException("waitHandle");
12 }
13 return waitHandle.SafeWaitHandle;
14 }

References System.Threading.WaitHandle.SafeWaitHandle.