50 lines
2.6 KiB
C#
50 lines
2.6 KiB
C#
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: 0x0200023B RID: 571
|
|
[Token(Token = "0x200023B")]
|
|
[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: 0x06001477 RID: 5239 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001477")]
|
|
[Address(RVA = "0x30CCBA0", Offset = "0x30CBBA0", VA = "0x1830CCBA0")]
|
|
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: 0x06001478 RID: 5240 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001478")]
|
|
[Address(RVA = "0x30CCC30", Offset = "0x30CBC30", VA = "0x1830CCC30")]
|
|
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: 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)
|
|
{
|
|
}
|
|
}
|
|
}
|