Files
2026-04-10 22:50:51 +02:00

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: 0x020000D9 RID: 217
[Token(Token = "0x20000D9")]
[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: 0x06000824 RID: 2084 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000824")]
[Address(RVA = "0x1E8B1A0", Offset = "0x1E89FA0", VA = "0x181E8B1A0")]
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: 0x06000825 RID: 2085 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000825")]
[Address(RVA = "0x1E8B160", Offset = "0x1E89F60", VA = "0x181E8B160")]
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: 0x06000826 RID: 2086 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000826")]
[Address(RVA = "0x1E8B180", Offset = "0x1E89F80", VA = "0x181E8B180")]
protected DllNotFoundException(SerializationInfo info, StreamingContext context)
{
}
}
}