43 lines
1.9 KiB
C#
43 lines
1.9 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>The exception that is thrown when a DLL specified in a DLL import cannot be found.</summary>
|
|
// Token: 0x020000E0 RID: 224
|
|
[Token(Token = "0x20000E0")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public class DllNotFoundException : TypeLoadException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.DllNotFoundException" /> class with default properties.</summary>
|
|
// Token: 0x0600084D RID: 2125 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600084D")]
|
|
[Address(RVA = "0x71AC40", Offset = "0x719C40", VA = "0x18071AC40")]
|
|
public DllNotFoundException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.DllNotFoundException" /> class with a specified error message.</summary>
|
|
/// <param name="message">The error message that explains the reason for the exception.</param>
|
|
// Token: 0x0600084E RID: 2126 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600084E")]
|
|
[Address(RVA = "0x71AC00", Offset = "0x719C00", VA = "0x18071AC00")]
|
|
public DllNotFoundException(string message)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.DllNotFoundException" /> class with serialized data.</summary>
|
|
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
|
|
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
|
|
// Token: 0x0600084F RID: 2127 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600084F")]
|
|
[Address(RVA = "0x71AC20", Offset = "0x719C20", VA = "0x18071AC20")]
|
|
protected DllNotFoundException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|