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: 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)
|
|
{
|
|
}
|
|
}
|
|
}
|