using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System { /// 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. // Token: 0x02000121 RID: 289 [Token(Token = "0x2000121")] [ComVisible(true)] [Serializable] public class MissingMemberException : MemberAccessException, ISerializable { /// Initializes a new instance of the class. // Token: 0x06000A90 RID: 2704 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A90")] [Address(RVA = "0x2D6AE90", Offset = "0x2D69E90", VA = "0x182D6AE90")] public MissingMemberException() { } /// Initializes a new instance of the class with a specified error message. /// The message that describes the error. // Token: 0x06000A91 RID: 2705 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A91")] [Address(RVA = "0x2D6AF00", Offset = "0x2D69F00", VA = "0x182D6AF00")] public MissingMemberException(string message) { } /// Initializes a new instance of the class with serialized data. /// The object that holds the serialized object data. /// The contextual information about the source or destination. // 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) { } /// Gets the text string showing the class name, the member name, and the signature of the missing member. /// The error message string. // 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; } /// Sets the object with the class name, the member name, the signature of the missing member, and additional exception information. /// The object that holds the serialized object data. /// The contextual information about the source or destination. /// The object is . // 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) { } /// Holds the class name of the missing member. // Token: 0x0400046A RID: 1130 [global::Cpp2IlInjected.FieldOffset(Offset = "0x88")] [Token(Token = "0x400046A")] protected string ClassName; /// Holds the name of the missing member. // Token: 0x0400046B RID: 1131 [global::Cpp2IlInjected.FieldOffset(Offset = "0x90")] [Token(Token = "0x400046B")] protected string MemberName; /// Holds the signature of the missing member. // Token: 0x0400046C RID: 1132 [global::Cpp2IlInjected.FieldOffset(Offset = "0x98")] [Token(Token = "0x400046C")] protected byte[] Signature; } }