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: 0x02000234 RID: 564 [Token(Token = "0x2000234")] [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: 0x06001439 RID: 5177 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001439")] [Address(RVA = "0x2960350", Offset = "0x295F150", VA = "0x182960350")] 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: 0x0600143A RID: 5178 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600143A")] [Address(RVA = "0x29603E0", Offset = "0x295F1E0", VA = "0x1829603E0")] 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: 0x0600143B RID: 5179 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600143B")] [Address(RVA = "0x29603B0", Offset = "0x295F1B0", VA = "0x1829603B0")] public TargetParameterCountException(string message, Exception inner) { } // Token: 0x0600143C RID: 5180 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600143C")] [Address(RVA = "0x700790", Offset = "0x6FF590", VA = "0x180700790")] internal TargetParameterCountException(SerializationInfo info, StreamingContext context) { } } }