using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Threading
{
/// Notifies a waiting thread that an event has occurred. This class cannot be inherited.
// Token: 0x02000332 RID: 818
[Token(Token = "0x2000332")]
[ComVisible(true)]
public sealed class AutoResetEvent : EventWaitHandle
{
/// Initializes a new instance of the class with a Boolean value indicating whether to set the initial state to signaled.
///
/// to set the initial state to signaled; to set the initial state to non-signaled.
// Token: 0x06001F16 RID: 7958 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001F16")]
[Address(RVA = "0xF27D70", Offset = "0xF26D70", VA = "0x180F27D70")]
public AutoResetEvent(bool initialState)
{
}
}
}