Files
Aug2021-Cpp2IL-Dump/System/ComponentModel/LicenseException.cs
T
2026-04-10 22:50:51 +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: 0x02000156 RID: 342
[Token(Token = "0x2000156")]
[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: 0x0600082E RID: 2094 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600082E")]
[Address(RVA = "0x4EFFD0", Offset = "0x4EEDD0", VA = "0x1804EFFD0")]
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: 0x0600082F RID: 2095 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600082F")]
[Address(RVA = "0x4F0260", Offset = "0x4EF060", VA = "0x1804F0260")]
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: 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)
{
}
/// <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: 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)
{
}
/// <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: 0x06000832 RID: 2098 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000832")]
[Address(RVA = "0x4F00E0", Offset = "0x4EEEE0", VA = "0x1804F00E0")]
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: 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;
}
}
/// <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: 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;
}
}