This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,49 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Reflection
{
/// <summary>The exception that is thrown when the number of parameters for an invocation does not match the number expected. This class cannot be inherited.</summary>
// Token: 0x02000234 RID: 564
[Token(Token = "0x2000234")]
[ComVisible(true)]
[Serializable]
public sealed class TargetParameterCountException : ApplicationException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.TargetParameterCountException" /> class with an empty message string and the root cause of the exception.</summary>
// Token: 0x06001439 RID: 5177 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001439")]
[Address(RVA = "0x2960350", Offset = "0x295F150", VA = "0x182960350")]
public TargetParameterCountException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.TargetParameterCountException" /> class with its message string set to the given message and the root cause exception.</summary>
/// <param name="message">A <see langword="String" /> describing the reason this exception was thrown.</param>
// Token: 0x0600143A RID: 5178 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600143A")]
[Address(RVA = "0x29603E0", Offset = "0x295F1E0", VA = "0x1829603E0")]
public TargetParameterCountException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.TargetParameterCountException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
/// <param name="message">The error message that explains the reason for the exception.</param>
/// <param name="inner">The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
// 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)
{
}
}
}