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: 0x02000318 RID: 792
[Token(Token = "0x2000318")]
[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: 0x06001D15 RID: 7445 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001D15")]
[Address(RVA = "0x291C170", Offset = "0x291AF70", VA = "0x18291C170")]
public AutoResetEvent(bool initialState)
{
}
}
}