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: 0x020000AD RID: 173
|
|
[Token(Token = "0x20000AD")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public class AppDomainUnloadedException : SystemException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.AppDomainUnloadedException" /> class.</summary>
|
|
// Token: 0x060004DF RID: 1247 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004DF")]
|
|
[Address(RVA = "0x26BD290", Offset = "0x26BC090", VA = "0x1826BD290")]
|
|
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: 0x060004E0 RID: 1248 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004E0")]
|
|
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
|
|
protected AppDomainUnloadedException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|