Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

17 lines
737 B
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
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">
/// <see langword="true" /> if the <see cref="T:System.Threading.WaitHandle" /> timed out; <see langword="false" /> if it was signaled.</param>
// Token: 0x02000350 RID: 848
// (Invoke) Token: 0x06001FEA RID: 8170
[Token(Token = "0x2000350")]
[ComVisible(true)]
public delegate void WaitOrTimerCallback(object state, bool timedOut);
}