using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System { /// The exception that is thrown when a null reference ( in Visual Basic) is passed to a method that does not accept it as a valid argument. // Token: 0x020000B0 RID: 176 [Token(Token = "0x20000B0")] [ComVisible(true)] [Serializable] public class ArgumentNullException : ArgumentException { /// Initializes a new instance of the class. // Token: 0x060004ED RID: 1261 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60004ED")] [Address(RVA = "0x26BF1B0", Offset = "0x26BDFB0", VA = "0x1826BF1B0")] public ArgumentNullException() { } /// Initializes a new instance of the class with the name of the parameter that causes this exception. /// The name of the parameter that caused the exception. // Token: 0x060004EE RID: 1262 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60004EE")] [Address(RVA = "0x26BF270", Offset = "0x26BE070", VA = "0x1826BF270")] public ArgumentNullException(string paramName) { } /// Initializes an instance of the class with a specified error message and the name of the parameter that causes this exception. /// The name of the parameter that caused the exception. /// A message that describes the error. // Token: 0x060004EF RID: 1263 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60004EF")] [Address(RVA = "0x26BF220", Offset = "0x26BE020", VA = "0x1826BF220")] public ArgumentNullException(string paramName, string message) { } /// Initializes a new instance of the class with serialized data. /// The object that holds the serialized object data. /// An object that describes the source or destination of the serialized data. // Token: 0x060004F0 RID: 1264 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60004F0")] [Address(RVA = "0x26BEF50", Offset = "0x26BDD50", VA = "0x1826BEF50")] protected ArgumentNullException(SerializationInfo info, StreamingContext context) { } } }