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 field that does not exist. If a field in a class library has been removed or renamed, recompile any assemblies that reference that library. // Token: 0x02000119 RID: 281 [Token(Token = "0x2000119")] [ComVisible(true)] [Serializable] public class MissingFieldException : MissingMemberException, ISerializable { /// Initializes a new instance of the class. // Token: 0x06000A59 RID: 2649 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A59")] [Address(RVA = "0x25FEAE0", Offset = "0x25FD8E0", VA = "0x1825FEAE0")] public MissingFieldException() { } /// Initializes a new instance of the class with a specified error message. /// A that describes the error. // Token: 0x06000A5A RID: 2650 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A5A")] [Address(RVA = "0x25FEB80", Offset = "0x25FD980", VA = "0x1825FEB80")] public MissingFieldException(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: 0x06000A5B RID: 2651 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A5B")] [Address(RVA = "0x25FEB60", Offset = "0x25FD960", VA = "0x1825FEB60")] protected MissingFieldException(SerializationInfo info, StreamingContext context) { } /// Gets the text string showing the signature of the missing field, the class name, and the field name. This property is read-only. /// The error message string. // Token: 0x170000D0 RID: 208 // (get) Token: 0x06000A5C RID: 2652 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x170000D0")] public override string Message { [Token(Token = "0x6000A5C")] [Address(RVA = "0x25FEC60", Offset = "0x25FDA60", VA = "0x1825FEC60", Slot = "5")] get { return null; } } /// Initializes a new instance of the class with the specified class name and field name. /// The name of the class in which access to a nonexistent field was attempted. /// The name of the field that cannot be accessed. // Token: 0x06000A5D RID: 2653 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A5D")] [Address(RVA = "0x25FEBD0", Offset = "0x25FD9D0", VA = "0x1825FEBD0")] public MissingFieldException(string className, string fieldName) { } } }