34 lines
1.3 KiB
C#
34 lines
1.3 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 is made to access an unloaded application domain.</summary>
|
|
// Token: 0x020000B4 RID: 180
|
|
[Token(Token = "0x20000B4")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public class AppDomainUnloadedException : SystemException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.AppDomainUnloadedException" /> class.</summary>
|
|
// Token: 0x060004FA RID: 1274 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004FA")]
|
|
[Address(RVA = "0x2D00F80", Offset = "0x2CFFF80", VA = "0x182D00F80")]
|
|
public AppDomainUnloadedException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.AppDomainUnloadedException" /> class with 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: 0x060004FB RID: 1275 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004FB")]
|
|
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
|
|
protected AppDomainUnloadedException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|