using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Threading { /// The exception that is thrown when a is interrupted while it is in a waiting state. // Token: 0x0200034D RID: 845 [Token(Token = "0x200034D")] [ComVisible(true)] [Serializable] public class ThreadInterruptedException : SystemException { /// Initializes a new instance of the class with default properties. // Token: 0x06001FE1 RID: 8161 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001FE1")] [Address(RVA = "0xB52490", Offset = "0xB51490", VA = "0x180B52490")] public ThreadInterruptedException() { } /// Initializes a new instance of the class with serialized data. /// The that holds the serialized object data about the exception being thrown. /// The that contains contextual information about the source or destination. // Token: 0x06001FE2 RID: 8162 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001FE2")] [Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")] protected ThreadInterruptedException(SerializationInfo info, StreamingContext context) { } } }