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: 0x02000122 RID: 290 [Token(Token = "0x2000122")] [ComVisible(true)] [Serializable] public class MissingMethodException : MissingMemberException, ISerializable { /// Initializes a new instance of the class. // Token: 0x06000A96 RID: 2710 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A96")] [Address(RVA = "0x2D6B230", Offset = "0x2D6A230", VA = "0x182D6B230")] public MissingMethodException() { } /// Initializes a new instance of the class with a specified error message. /// A that describes the error. // Token: 0x06000A97 RID: 2711 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A97")] [Address(RVA = "0x2D6B2B0", Offset = "0x2D6A2B0", VA = "0x182D6B2B0")] 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: 0x06000A98 RID: 2712 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A98")] [Address(RVA = "0x2D6AB00", Offset = "0x2D69B00", VA = "0x182D6AB00")] 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: 0x170000D7 RID: 215 // (get) Token: 0x06000A99 RID: 2713 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x170000D7")] public override string Message { [Token(Token = "0x6000A99")] [Address(RVA = "0x2D6B300", Offset = "0x2D6A300", VA = "0x182D6B300", 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: 0x06000A9A RID: 2714 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A9A")] [Address(RVA = "0x2D6AB70", Offset = "0x2D69B70", VA = "0x182D6AB70")] public MissingMethodException(string className, string methodName) { } // Token: 0x06000A9B RID: 2715 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A9B")] [Address(RVA = "0x2D6B1B0", Offset = "0x2D6A1B0", VA = "0x182D6B1B0")] private MissingMethodException(string className, string methodName, string signature, string message) { } // Token: 0x0400046D RID: 1133 [global::Cpp2IlInjected.FieldOffset(Offset = "0xA0")] [Token(Token = "0x400046D")] [NonSerialized] private string signature; } }