This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,23 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Threading
{
/// <summary>Notifies a waiting thread that an event has occurred. This class cannot be inherited.</summary>
// Token: 0x02000318 RID: 792
[Token(Token = "0x2000318")]
[ComVisible(true)]
public sealed class AutoResetEvent : EventWaitHandle
{
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.AutoResetEvent" /> class with a Boolean value indicating whether to set the initial state to signaled.</summary>
/// <param name="initialState">
/// <see langword="true" /> to set the initial state to signaled; <see langword="false" /> to set the initial state to non-signaled.</param>
// Token: 0x06001D15 RID: 7445 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001D15")]
[Address(RVA = "0x291C170", Offset = "0x291AF70", VA = "0x18291C170")]
public AutoResetEvent(bool initialState)
{
}
}
}