This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,42 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>The exception that is thrown when an attempt to unload an application domain fails.</summary>
// Token: 0x020000C6 RID: 198
[Token(Token = "0x20000C6")]
[ComVisible(true)]
[Serializable]
public class CannotUnloadAppDomainException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.CannotUnloadAppDomainException" /> class.</summary>
// Token: 0x060005C8 RID: 1480 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60005C8")]
[Address(RVA = "0x2D0F370", Offset = "0x2D0E370", VA = "0x182D0F370")]
public CannotUnloadAppDomainException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.CannotUnloadAppDomainException" /> class with a specified error message.</summary>
/// <param name="message">A <see cref="T:System.String" /> that describes the error.</param>
// Token: 0x060005C9 RID: 1481 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60005C9")]
[Address(RVA = "0x2D0F3D0", Offset = "0x2D0E3D0", VA = "0x182D0F3D0")]
public CannotUnloadAppDomainException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.CannotUnloadAppDomainException" /> class from serialized data.</summary>
/// <param name="info">The object that holds the serialized object data.</param>
/// <param name="context">The contextual information about the source or destination.</param>
// Token: 0x060005CA RID: 1482 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60005CA")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected CannotUnloadAppDomainException(SerializationInfo info, StreamingContext context)
{
}
}
}