using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Threading { /// The exception that is thrown when an attempt is made to open a system mutex, semaphore, or event wait handle that does not exist. // Token: 0x02000360 RID: 864 [Token(Token = "0x2000360")] [ComVisible(false)] [Serializable] public class WaitHandleCannotBeOpenedException : ApplicationException { /// Initializes a new instance of the class with default values. // Token: 0x06002049 RID: 8265 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002049")] [Address(RVA = "0xF85380", Offset = "0xF84380", VA = "0x180F85380")] public WaitHandleCannotBeOpenedException() { } /// Initializes a new instance of the class with a specified error message. /// The error message that explains the reason for the exception. // Token: 0x0600204A RID: 8266 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600204A")] [Address(RVA = "0xF85350", Offset = "0xF84350", VA = "0x180F85350")] public WaitHandleCannotBeOpenedException(string message) { } /// Initializes a new instance of the class with serialized data. /// The object that holds the serialized object data about the exception being thrown. /// The object that contains contextual information about the source or destination. // Token: 0x0600204B RID: 8267 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600204B")] [Address(RVA = "0xF853E0", Offset = "0xF843E0", VA = "0x180F853E0")] protected WaitHandleCannotBeOpenedException(SerializationInfo info, StreamingContext context) { } } }