using System; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.ComponentModel { /// Represents the exception thrown when a component cannot be granted a license. // Token: 0x02000156 RID: 342 [Token(Token = "0x2000156")] [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: 0x0600082E RID: 2094 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600082E")] [Address(RVA = "0x4EFFD0", Offset = "0x4EEDD0", VA = "0x1804EFFD0")] 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: 0x0600082F RID: 2095 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600082F")] [Address(RVA = "0x4F0260", Offset = "0x4EF060", VA = "0x1804F0260")] 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: 0x06000830 RID: 2096 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000830")] [Address(RVA = "0x4F0400", Offset = "0x4EF200", VA = "0x1804F0400")] 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: 0x06000831 RID: 2097 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000831")] [Address(RVA = "0x4F0210", Offset = "0x4EF010", VA = "0x1804F0210")] 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: 0x06000832 RID: 2098 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000832")] [Address(RVA = "0x4F00E0", Offset = "0x4EEEE0", VA = "0x1804F00E0")] 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: 0x17000189 RID: 393 // (get) Token: 0x06000833 RID: 2099 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000189")] public Type LicensedType { [Token(Token = "0x6000833")] [Address(RVA = "0x44EC80", Offset = "0x44DA80", VA = "0x18044EC80")] 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: 0x06000834 RID: 2100 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000834")] [Address(RVA = "0x4EFF00", Offset = "0x4EED00", VA = "0x1804EFF00", Slot = "10")] public override void GetObjectData(SerializationInfo info, StreamingContext context) { } // Token: 0x040004FA RID: 1274 [FieldOffset(Offset = "0x88")] [Token(Token = "0x40004FA")] private Type type; // Token: 0x040004FB RID: 1275 [FieldOffset(Offset = "0x90")] [Token(Token = "0x40004FB")] private object instance; } }