Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Threading/AutoResetEvent.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

24 lines
957 B
C#

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: 0x02000332 RID: 818
[Token(Token = "0x2000332")]
[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: 0x06001F16 RID: 7958 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001F16")]
[Address(RVA = "0xF27D70", Offset = "0xF26D70", VA = "0x180F27D70")]
public AutoResetEvent(bool initialState)
{
}
}
}