using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System { /// The exception that is thrown when one of the arguments provided to a method is not valid. // Token: 0x020000AF RID: 175 [Token(Token = "0x20000AF")] [ComVisible(true)] [Serializable] public class ArgumentException : SystemException, ISerializable { /// Initializes a new instance of the class. // Token: 0x060004E5 RID: 1253 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60004E5")] [Address(RVA = "0x26BEFE0", Offset = "0x26BDDE0", VA = "0x1826BEFE0")] public ArgumentException() { } /// Initializes a new instance of the class with a specified error message. /// The error message that explains the reason for the exception. // Token: 0x060004E6 RID: 1254 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60004E6")] [Address(RVA = "0x26BF080", Offset = "0x26BDE80", VA = "0x1826BF080")] public ArgumentException(string message) { } /// Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. /// The error message that explains the reason for the exception. /// The exception that is the cause of the current exception. If the parameter is not a null reference, the current exception is raised in a block that handles the inner exception. // Token: 0x060004E7 RID: 1255 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60004E7")] [Address(RVA = "0x26BEEE0", Offset = "0x26BDCE0", VA = "0x1826BEEE0")] public ArgumentException(string message, Exception innerException) { } /// Initializes a new instance of the class with a specified error message, the parameter name, and a reference to the inner exception that is the cause of this exception. /// The error message that explains the reason for the exception. /// The name of the parameter that caused the current exception. /// The exception that is the cause of the current exception. If the parameter is not a null reference, the current exception is raised in a block that handles the inner exception. // Token: 0x060004E8 RID: 1256 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60004E8")] [Address(RVA = "0x26BF040", Offset = "0x26BDE40", VA = "0x1826BF040")] public ArgumentException(string message, string paramName, Exception innerException) { } /// Initializes a new instance of the class with a specified error message and the name of the parameter that causes this exception. /// The error message that explains the reason for the exception. /// The name of the parameter that caused the current exception. // Token: 0x060004E9 RID: 1257 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60004E9")] [Address(RVA = "0x26BEF10", Offset = "0x26BDD10", VA = "0x1826BEF10")] public ArgumentException(string message, string paramName) { } /// 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: 0x060004EA RID: 1258 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60004EA")] [Address(RVA = "0x26BEF50", Offset = "0x26BDD50", VA = "0x1826BEF50")] protected ArgumentException(SerializationInfo info, StreamingContext context) { } /// Gets the error message and the parameter name, or only the error message if no parameter name is set. /// A text string describing the details of the exception. The value of this property takes one of two forms: /// Condition /// /// Value /// /// The is a null reference ( in Visual Basic) or of zero length. /// /// The string passed to the constructor. /// /// The is not null reference ( in Visual Basic) and it has a length greater than zero. /// /// The string appended with the name of the invalid parameter. // Token: 0x1700008C RID: 140 // (get) Token: 0x060004EB RID: 1259 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x1700008C")] public override string Message { [Token(Token = "0x60004EB")] [Address(RVA = "0x26BF0B0", Offset = "0x26BDEB0", VA = "0x1826BF0B0", Slot = "5")] get { return null; } } /// Sets the object with the parameter name and additional exception information. /// The object that holds the serialized object data. /// The contextual information about the source or destination. /// The object is a null reference ( in Visual Basic). // Token: 0x060004EC RID: 1260 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60004EC")] [Address(RVA = "0x26BEDF0", Offset = "0x26BDBF0", VA = "0x1826BEDF0", Slot = "10")] public override void GetObjectData(SerializationInfo info, StreamingContext context) { } // Token: 0x040001F3 RID: 499 [global::Cpp2IlInjected.FieldOffset(Offset = "0x88")] [Token(Token = "0x40001F3")] private string m_paramName; } }