using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Reflection { /// The exception that is thrown when the number of parameters for an invocation does not match the number expected. This class cannot be inherited. // Token: 0x0200023B RID: 571 [Token(Token = "0x200023B")] [ComVisible(true)] [Serializable] public sealed class TargetParameterCountException : ApplicationException { /// Initializes a new instance of the class with an empty message string and the root cause of the exception. // Token: 0x06001477 RID: 5239 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001477")] [Address(RVA = "0x30CCBA0", Offset = "0x30CBBA0", VA = "0x1830CCBA0")] public TargetParameterCountException() { } /// Initializes a new instance of the class with its message string set to the given message and the root cause exception. /// A describing the reason this exception was thrown. // Token: 0x06001478 RID: 5240 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001478")] [Address(RVA = "0x30CCC30", Offset = "0x30CBC30", VA = "0x1830CCC30")] public TargetParameterCountException(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 , the current exception is raised in a block that handles the inner exception. // Token: 0x06001479 RID: 5241 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001479")] [Address(RVA = "0x30CCC00", Offset = "0x30CBC00", VA = "0x1830CCC00")] public TargetParameterCountException(string message, Exception inner) { } // Token: 0x0600147A RID: 5242 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600147A")] [Address(RVA = "0xF853E0", Offset = "0xF843E0", VA = "0x180F853E0")] internal TargetParameterCountException(SerializationInfo info, StreamingContext context) { } } }