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

95 lines
4.1 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>The exception that is thrown when there is an attempt to dynamically access a class member that does not exist or that is not declared as public. If a member in a class library has been removed or renamed, recompile any assemblies that reference that library.</summary>
// Token: 0x0200011A RID: 282
[Token(Token = "0x200011A")]
[ComVisible(true)]
[Serializable]
public class MissingMemberException : MemberAccessException, ISerializable
{
/// <summary>Initializes a new instance of the <see cref="T:System.MissingMemberException" /> class.</summary>
// Token: 0x06000A5E RID: 2654 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A5E")]
[Address(RVA = "0x25FEEF0", Offset = "0x25FDCF0", VA = "0x1825FEEF0")]
public MissingMemberException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.MissingMemberException" /> class with a specified error message.</summary>
/// <param name="message">The message that describes the error.</param>
// Token: 0x06000A5F RID: 2655 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A5F")]
[Address(RVA = "0x25FEF60", Offset = "0x25FDD60", VA = "0x1825FEF60")]
public MissingMemberException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.MissingMemberException" /> 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: 0x06000A60 RID: 2656 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A60")]
[Address(RVA = "0x25FEFA0", Offset = "0x25FDDA0", VA = "0x1825FEFA0")]
protected MissingMemberException(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Gets the text string showing the class name, the member name, and the signature of the missing member.</summary>
/// <returns>The error message string.</returns>
// Token: 0x170000D1 RID: 209
// (get) Token: 0x06000A61 RID: 2657 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170000D1")]
public override string Message
{
[Token(Token = "0x6000A61")]
[Address(RVA = "0x25FF0C0", Offset = "0x25FDEC0", VA = "0x1825FF0C0", Slot = "5")]
get
{
return null;
}
}
// Token: 0x06000A62 RID: 2658 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000A62")]
[Address(RVA = "0x450D90", Offset = "0x44FB90", VA = "0x180450D90")]
internal static string FormatSignature(byte[] signature)
{
return null;
}
/// <summary>Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the class name, the member name, the signature of the missing member, and additional exception information.</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>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> object is <see langword="null" />.</exception>
// Token: 0x06000A63 RID: 2659 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A63")]
[Address(RVA = "0x25FED90", Offset = "0x25FDB90", VA = "0x1825FED90", Slot = "10")]
public override void GetObjectData(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Holds the class name of the missing member.</summary>
// Token: 0x04000460 RID: 1120
[global::Cpp2IlInjected.FieldOffset(Offset = "0x88")]
[Token(Token = "0x4000460")]
protected string ClassName;
/// <summary>Holds the name of the missing member.</summary>
// Token: 0x04000461 RID: 1121
[global::Cpp2IlInjected.FieldOffset(Offset = "0x90")]
[Token(Token = "0x4000461")]
protected string MemberName;
/// <summary>Holds the signature of the missing member.</summary>
// Token: 0x04000462 RID: 1122
[global::Cpp2IlInjected.FieldOffset(Offset = "0x98")]
[Token(Token = "0x4000462")]
protected byte[] Signature;
}
}