using System; using System.Runtime.InteropServices; namespace System.Threading { /// Represents a method to be called when a is signaled or times out. /// An object containing information to be used by the callback method each time it executes. /// true if the timed out; false if it was signaled. /// 2 // Token: 0x020006E3 RID: 1763 // (Invoke) Token: 0x06004214 RID: 16916 [ComVisible(true)] public delegate void WaitOrTimerCallback(object state, bool timedOut); }