This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,14 @@
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);
}