Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x02000121 RID: 289
[Token(Token = "0x2000121")]
[ComVisible(true)]
[Serializable]
public class MissingMemberException : MemberAccessException, ISerializable
{
/// <summary>Initializes a new instance of the <see cref="T:System.MissingMemberException" /> class.</summary>
// Token: 0x06000A90 RID: 2704 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A90")]
[Address(RVA = "0x2D6AE90", Offset = "0x2D69E90", VA = "0x182D6AE90")]
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: 0x06000A91 RID: 2705 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A91")]
[Address(RVA = "0x2D6AF00", Offset = "0x2D69F00", VA = "0x182D6AF00")]
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: 0x06000A92 RID: 2706 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A92")]
[Address(RVA = "0x2D6AF40", Offset = "0x2D69F40", VA = "0x182D6AF40")]
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: 0x170000D6 RID: 214
// (get) Token: 0x06000A93 RID: 2707 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170000D6")]
public override string Message
{
[Token(Token = "0x6000A93")]
[Address(RVA = "0x2D6B060", Offset = "0x2D6A060", VA = "0x182D6B060", Slot = "5")]
get
{
return null;
}
}
// Token: 0x06000A94 RID: 2708 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000A94")]
[Address(RVA = "0x92BEF0", Offset = "0x92AEF0", VA = "0x18092BEF0")]
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: 0x06000A95 RID: 2709 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A95")]
[Address(RVA = "0x2D6AD30", Offset = "0x2D69D30", VA = "0x182D6AD30", Slot = "10")]
public override void GetObjectData(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Holds the class name of the missing member.</summary>
// Token: 0x0400046A RID: 1130
[global::Cpp2IlInjected.FieldOffset(Offset = "0x88")]
[Token(Token = "0x400046A")]
protected string ClassName;
/// <summary>Holds the name of the missing member.</summary>
// Token: 0x0400046B RID: 1131
[global::Cpp2IlInjected.FieldOffset(Offset = "0x90")]
[Token(Token = "0x400046B")]
protected string MemberName;
/// <summary>Holds the signature of the missing member.</summary>
// Token: 0x0400046C RID: 1132
[global::Cpp2IlInjected.FieldOffset(Offset = "0x98")]
[Token(Token = "0x400046C")]
protected byte[] Signature;
}
}