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: 0x020000B6 RID: 182 [Token(Token = "0x20000B6")] [ComVisible(true)] [Serializable] public class ArgumentException : SystemException, ISerializable { /// Initializes a new instance of the class. // Token: 0x06000500 RID: 1280 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000500")] [Address(RVA = "0x2D02CD0", Offset = "0x2D01CD0", VA = "0x182D02CD0")] 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: 0x06000501 RID: 1281 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000501")] [Address(RVA = "0x2D02D70", Offset = "0x2D01D70", VA = "0x182D02D70")] 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: 0x06000502 RID: 1282 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000502")] [Address(RVA = "0x2D02BD0", Offset = "0x2D01BD0", VA = "0x182D02BD0")] 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: 0x06000503 RID: 1283 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000503")] [Address(RVA = "0x2D02D30", Offset = "0x2D01D30", VA = "0x182D02D30")] 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: 0x06000504 RID: 1284 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000504")] [Address(RVA = "0x2D02C00", Offset = "0x2D01C00", VA = "0x182D02C00")] 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: 0x06000505 RID: 1285 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000505")] [Address(RVA = "0x2D02C40", Offset = "0x2D01C40", VA = "0x182D02C40")] 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: 0x17000090 RID: 144 // (get) Token: 0x06000506 RID: 1286 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x17000090")] public override string Message { [Token(Token = "0x6000506")] [Address(RVA = "0x2D02DA0", Offset = "0x2D01DA0", VA = "0x182D02DA0", 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: 0x06000507 RID: 1287 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000507")] [Address(RVA = "0x2D02AE0", Offset = "0x2D01AE0", VA = "0x182D02AE0", Slot = "10")] public override void GetObjectData(SerializationInfo info, StreamingContext context) { } // Token: 0x040001FD RID: 509 [global::Cpp2IlInjected.FieldOffset(Offset = "0x88")] [Token(Token = "0x40001FD")] private string m_paramName; } }