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 method that does not exist. // Token: 0x0200011B RID: 283 [Token(Token = "0x200011B")] [ComVisible(true)] [Serializable] public class MissingMethodException : MissingMemberException, ISerializable { /// Initializes a new instance of the class. // Token: 0x06000A64 RID: 2660 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A64")] [Address(RVA = "0x25FF290", Offset = "0x25FE090", VA = "0x1825FF290")] public MissingMethodException() { } /// Initializes a new instance of the class with a specified error message. /// A that describes the error. // Token: 0x06000A65 RID: 2661 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A65")] [Address(RVA = "0x25FF310", Offset = "0x25FE110", VA = "0x1825FF310")] public MissingMethodException(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: 0x06000A66 RID: 2662 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A66")] [Address(RVA = "0x25FEB60", Offset = "0x25FD960", VA = "0x1825FEB60")] protected MissingMethodException(SerializationInfo info, StreamingContext context) { } /// Gets the text string showing the class name, the method name, and the signature of the missing method. This property is read-only. /// The error message string. // Token: 0x170000D2 RID: 210 // (get) Token: 0x06000A67 RID: 2663 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x170000D2")] public override string Message { [Token(Token = "0x6000A67")] [Address(RVA = "0x25FF360", Offset = "0x25FE160", VA = "0x1825FF360", Slot = "5")] get { return null; } } /// Initializes a new instance of the class with the specified class name and method name. /// The name of the class in which access to a nonexistent method was attempted. /// The name of the method that cannot be accessed. // Token: 0x06000A68 RID: 2664 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A68")] [Address(RVA = "0x25FEBD0", Offset = "0x25FD9D0", VA = "0x1825FEBD0")] public MissingMethodException(string className, string methodName) { } // Token: 0x06000A69 RID: 2665 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A69")] [Address(RVA = "0x25FF210", Offset = "0x25FE010", VA = "0x1825FF210")] private MissingMethodException(string className, string methodName, string signature, string message) { } // Token: 0x04000463 RID: 1123 [global::Cpp2IlInjected.FieldOffset(Offset = "0xA0")] [Token(Token = "0x4000463")] [NonSerialized] private string signature; } }