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

◆ TryEnter() [4/6]

static void System.Threading.Monitor.TryEnter ( object obj,
ref bool lockTaken )
inlinestatic

Definition at line 43 of file Monitor.cs.

44 {
45 if (lockTaken)
46 {
48 }
49 ReliableEnterTimeout(obj, 0, ref lockTaken);
50 }
static void ReliableEnterTimeout(object obj, int timeout, ref bool lockTaken)
static void ThrowLockTakenException()
Definition Monitor.cs:25

References System.obj, System.Threading.Monitor.ReliableEnterTimeout(), and System.Threading.Monitor.ThrowLockTakenException().