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: 0x02000120 RID: 288 [Token(Token = "0x2000120")] [ComVisible(true)] [Serializable] public class MissingFieldException : MissingMemberException, ISerializable { /// Initializes a new instance of the class. // Token: 0x06000A8B RID: 2699 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A8B")] [Address(RVA = "0x2D6AA80", Offset = "0x2D69A80", VA = "0x182D6AA80")] public MissingFieldException() { } /// Initializes a new instance of the class with a specified error message. /// A that describes the error. // Token: 0x06000A8C RID: 2700 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A8C")] [Address(RVA = "0x2D6AB20", Offset = "0x2D69B20", VA = "0x182D6AB20")] 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: 0x06000A8D RID: 2701 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A8D")] [Address(RVA = "0x2D6AB00", Offset = "0x2D69B00", VA = "0x182D6AB00")] 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: 0x170000D5 RID: 213 // (get) Token: 0x06000A8E RID: 2702 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x170000D5")] public override string Message { [Token(Token = "0x6000A8E")] [Address(RVA = "0x2D6AC00", Offset = "0x2D69C00", VA = "0x182D6AC00", 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: 0x06000A8F RID: 2703 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A8F")] [Address(RVA = "0x2D6AB70", Offset = "0x2D69B70", VA = "0x182D6AB70")] public MissingFieldException(string className, string fieldName) { } } }