Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

103 lines
5.4 KiB
C#

using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Represents the exception thrown when a component cannot be granted a license.</summary>
// Token: 0x02000152 RID: 338
[Token(Token = "0x2000152")]
[Serializable]
public class LicenseException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.LicenseException" /> class for the type of component that was denied a license.</summary>
/// <param name="type">A <see cref="T:System.Type" /> that represents the type of component that was not granted a license.</param>
// Token: 0x06000818 RID: 2072 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000818")]
[Address(RVA = "0xC5A3B0", Offset = "0xC593B0", VA = "0x180C5A3B0")]
public LicenseException(Type type)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.LicenseException" /> class for the type and the instance of the component that was denied a license.</summary>
/// <param name="type">A <see cref="T:System.Type" /> that represents the type of component that was not granted a license.</param>
/// <param name="instance">The instance of the component that was not granted a license.</param>
// 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)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.LicenseException" /> class for the type and the instance of the component that was denied a license, along with a message to display.</summary>
/// <param name="type">A <see cref="T:System.Type" /> that represents the type of component that was not granted a license.</param>
/// <param name="instance">The instance of the component that was not granted a license.</param>
/// <param name="message">The exception message to display.</param>
// 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)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.LicenseException" /> 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.</summary>
/// <param name="type">A <see cref="T:System.Type" /> that represents the type of component that was not granted a license.</param>
/// <param name="instance">The instance of the component that was not granted a license.</param>
/// <param name="message">The exception message to display.</param>
/// <param name="innerException">An <see cref="T:System.Exception" /> that represents the original exception.</param>
// 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)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.LicenseException" /> class with the given <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" />.</summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to be used for deserialization.</param>
/// <param name="context">The destination to be used for deserialization.</param>
// 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)
{
}
/// <summary>Gets the type of the component that was not granted a license.</summary>
/// <returns>A <see cref="T:System.Type" /> that represents the type of component that was not granted a license.</returns>
// 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;
}
}
/// <summary>Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception.</summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to be used for deserialization.</param>
/// <param name="context">The destination to be used for deserialization.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="info" /> is <see langword="null" />.</exception>
// 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;
}
}