using System; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.ComponentModel { /// Represents the exception thrown when a component cannot be granted a license. // Token: 0x02000152 RID: 338 [Token(Token = "0x2000152")] [Serializable] public class LicenseException : SystemException { /// Initializes a new instance of the class for the type of component that was denied a license. /// A that represents the type of component that was not granted a license. // Token: 0x06000818 RID: 2072 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000818")] [Address(RVA = "0xC5A3B0", Offset = "0xC593B0", VA = "0x180C5A3B0")] public LicenseException(Type type) { } /// Initializes a new instance of the class for the type and the instance of the component that was denied a license. /// A that represents the type of component that was not granted a license. /// The instance of the component that was not granted a license. // Token: 0x06000819 RID: 2073 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000819")] [Address(RVA = "0xC5A640", Offset = "0xC59640", VA = "0x180C5A640")] public LicenseException(Type type, object instance) { } /// Initializes a new instance of the class for the type and the instance of the component that was denied a license, along with a message to display. /// A that represents the type of component that was not granted a license. /// The instance of the component that was not granted a license. /// The exception message to display. // Token: 0x0600081A RID: 2074 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600081A")] [Address(RVA = "0xC5A7E0", Offset = "0xC597E0", VA = "0x180C5A7E0")] public LicenseException(Type type, object instance, string message) { } /// Initializes a new instance of the class for the type and the instance of the component that was denied a license, along with a message to display and the original exception thrown. /// A that represents the type of component that was not granted a license. /// The instance of the component that was not granted a license. /// The exception message to display. /// An that represents the original exception. // Token: 0x0600081B RID: 2075 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600081B")] [Address(RVA = "0xC5A5F0", Offset = "0xC595F0", VA = "0x180C5A5F0")] public LicenseException(Type type, object instance, 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: 0x0600081C RID: 2076 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600081C")] [Address(RVA = "0xC5A4C0", Offset = "0xC594C0", VA = "0x180C5A4C0")] protected LicenseException(SerializationInfo info, StreamingContext context) { } /// Gets the type of the component that was not granted a license. /// A that represents the type of component that was not granted a license. // Token: 0x17000185 RID: 389 // (get) Token: 0x0600081D RID: 2077 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000185")] public Type LicensedType { [Token(Token = "0x600081D")] [Address(RVA = "0x4C31C0", Offset = "0x4C21C0", VA = "0x1804C31C0")] get { return null; } } /// Sets the with information about the exception. /// The to be used for deserialization. /// The destination to be used for deserialization. /// /// is . // Token: 0x0600081E RID: 2078 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600081E")] [Address(RVA = "0xC5A2E0", Offset = "0xC592E0", VA = "0x180C5A2E0", Slot = "10")] public override void GetObjectData(SerializationInfo info, StreamingContext context) { } // Token: 0x040004ED RID: 1261 [FieldOffset(Offset = "0x88")] [Token(Token = "0x40004ED")] private Type type; // Token: 0x040004EE RID: 1262 [FieldOffset(Offset = "0x90")] [Token(Token = "0x40004EE")] private object instance; } }