15 lines
683 B
C#
15 lines
683 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.Threading
|
|
{
|
|
/// <summary>Represents a method to be called when a <see cref="T:System.Threading.WaitHandle" /> is signaled or times out.</summary>
|
|
/// <param name="state">An object containing information to be used by the callback method each time it executes. </param>
|
|
/// <param name="timedOut">true if the <see cref="T:System.Threading.WaitHandle" /> timed out; false if it was signaled. </param>
|
|
/// <filterpriority>2</filterpriority>
|
|
// Token: 0x020006E3 RID: 1763
|
|
// (Invoke) Token: 0x06004214 RID: 16916
|
|
[ComVisible(true)]
|
|
public delegate void WaitOrTimerCallback(object state, bool timedOut);
|
|
}
|