using System; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.ComponentModel { /// Thrown when a thread on which an operation should execute no longer exists or has no message loop. // Token: 0x0200014C RID: 332 [Token(Token = "0x200014C")] [Serializable] public class InvalidAsynchronousStateException : ArgumentException { /// Initializes a new instance of the class. // Token: 0x06000800 RID: 2048 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000800")] [Address(RVA = "0xC59BC0", Offset = "0xC58BC0", VA = "0x180C59BC0")] public InvalidAsynchronousStateException() { } /// Initializes a new instance of the class with the specified detailed description. /// A detailed description of the error. // Token: 0x06000801 RID: 2049 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000801")] [Address(RVA = "0xC59BA0", Offset = "0xC58BA0", VA = "0x180C59BA0")] public InvalidAsynchronousStateException(string message) { } /// Initializes a new instance of the class with the specified detailed description and the specified exception. /// A detailed description of the error. /// A reference to the inner exception that is the cause of this exception. // Token: 0x06000802 RID: 2050 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000802")] [Address(RVA = "0xC59BB0", Offset = "0xC58BB0", VA = "0x180C59BB0")] public InvalidAsynchronousStateException(string message, Exception innerException) { } /// Initializes a new instance of the class with the given and . /// The to be used for deserialization. /// The destination to be used for deserialization. // Token: 0x06000803 RID: 2051 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000803")] [Address(RVA = "0x71BEB0", Offset = "0x71AEB0", VA = "0x18071BEB0")] protected InvalidAsynchronousStateException(SerializationInfo info, StreamingContext context) { } } }