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

◆ Waiters

int System.Threading.ManualResetEventSlim.Waiters
getsetprivateinherited

Definition at line 54 of file ManualResetEventSlim.cs.

55 {
56 get
57 {
59 }
60 set
61 {
62 if (value >= 524287)
63 {
64 throw new InvalidOperationException(SR.Format(SR.ManualResetEventSlim_ctor_TooManyWaiters, 524287));
65 }
67 }
68 }
static int ExtractStatePortionAndShiftRight(int state, int mask, int rightBitShiftCount)
void UpdateStateAtomically(int newBits, int updateBitsMask)

Referenced by System.Threading.ManualResetEventSlim.Set(), and System.Threading.ManualResetEventSlim.Wait().