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: 0x0200011A RID: 282 [Token(Token = "0x200011A")] [ComVisible(true)] [Serializable] public class MissingMemberException : MemberAccessException, ISerializable { /// Initializes a new instance of the class. // Token: 0x06000A5E RID: 2654 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A5E")] [Address(RVA = "0x25FEEF0", Offset = "0x25FDCF0", VA = "0x1825FEEF0")] public MissingMemberException() { } /// Initializes a new instance of the class with a specified error message. /// The message that describes the error. // Token: 0x06000A5F RID: 2655 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A5F")] [Address(RVA = "0x25FEF60", Offset = "0x25FDD60", VA = "0x1825FEF60")] 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: 0x06000A60 RID: 2656 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A60")] [Address(RVA = "0x25FEFA0", Offset = "0x25FDDA0", VA = "0x1825FEFA0")] 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: 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; } /// 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: 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) { } /// Holds the class name of the missing member. // Token: 0x04000460 RID: 1120 [global::Cpp2IlInjected.FieldOffset(Offset = "0x88")] [Token(Token = "0x4000460")] protected string ClassName; /// Holds the name of the missing member. // Token: 0x04000461 RID: 1121 [global::Cpp2IlInjected.FieldOffset(Offset = "0x90")] [Token(Token = "0x4000461")] protected string MemberName; /// Holds the signature of the missing member. // Token: 0x04000462 RID: 1122 [global::Cpp2IlInjected.FieldOffset(Offset = "0x98")] [Token(Token = "0x4000462")] protected byte[] Signature; } }