43 lines
1.8 KiB
C#
43 lines
1.8 KiB
C#
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: 0x020000BF RID: 191
|
|
[Token(Token = "0x20000BF")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public class CannotUnloadAppDomainException : SystemException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.CannotUnloadAppDomainException" /> class.</summary>
|
|
// Token: 0x060005AB RID: 1451 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60005AB")]
|
|
[Address(RVA = "0x26CB610", Offset = "0x26CA410", VA = "0x1826CB610")]
|
|
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: 0x060005AC RID: 1452 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60005AC")]
|
|
[Address(RVA = "0x26CB670", Offset = "0x26CA470", VA = "0x1826CB670")]
|
|
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: 0x060005AD RID: 1453 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60005AD")]
|
|
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
|
|
protected CannotUnloadAppDomainException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|