using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Threading { /// Notifies one or more waiting threads that an event has occurred. This class cannot be inherited. // Token: 0x02000322 RID: 802 [Token(Token = "0x2000322")] [ComVisible(true)] public sealed class ManualResetEvent : 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 signaled; to set the initial state to nonsignaled. // Token: 0x06001D51 RID: 7505 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001D51")] [Address(RVA = "0x2923710", Offset = "0x2922510", VA = "0x182923710")] public ManualResetEvent(bool initialState) { } } }