Files
Aug2021-Cpp2IL-Dump/mscorlib/System/ArgumentOutOfRangeException.cs
2026-04-10 22:50:51 +02:00

123 lines
5.6 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>The exception that is thrown when the value of an argument is outside the allowable range of values as defined by the invoked method.</summary>
// Token: 0x020000B1 RID: 177
[Token(Token = "0x20000B1")]
[ComVisible(true)]
[Serializable]
public class ArgumentOutOfRangeException : ArgumentException, ISerializable
{
// Token: 0x1700008D RID: 141
// (get) Token: 0x060004F1 RID: 1265 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x1700008D")]
private static string RangeMessage
{
[Token(Token = "0x60004F1")]
[Address(RVA = "0x26BF8A0", Offset = "0x26BE6A0", VA = "0x1826BF8A0")]
get
{
return null;
}
}
/// <summary>Initializes a new instance of the <see cref="T:System.ArgumentOutOfRangeException" /> class.</summary>
// Token: 0x060004F2 RID: 1266 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004F2")]
[Address(RVA = "0x26BF460", Offset = "0x26BE260", VA = "0x1826BF460")]
public ArgumentOutOfRangeException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ArgumentOutOfRangeException" /> class with the name of the parameter that causes this exception.</summary>
/// <param name="paramName">The name of the parameter that causes this exception.</param>
// Token: 0x060004F3 RID: 1267 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004F3")]
[Address(RVA = "0x26BF500", Offset = "0x26BE300", VA = "0x1826BF500")]
public ArgumentOutOfRangeException(string paramName)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ArgumentOutOfRangeException" /> class with the name of the parameter that causes this exception and a specified error message.</summary>
/// <param name="paramName">The name of the parameter that caused the exception.</param>
/// <param name="message">The message that describes the error.</param>
// Token: 0x060004F4 RID: 1268 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004F4")]
[Address(RVA = "0x26BF4B0", Offset = "0x26BE2B0", VA = "0x1826BF4B0")]
public ArgumentOutOfRangeException(string paramName, string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ArgumentOutOfRangeException" /> class with the parameter name, the value of the argument, and a specified error message.</summary>
/// <param name="paramName">The name of the parameter that caused the exception.</param>
/// <param name="actualValue">The value of the argument that causes this exception.</param>
/// <param name="message">The message that describes the error.</param>
// Token: 0x060004F5 RID: 1269 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004F5")]
[Address(RVA = "0x26BF650", Offset = "0x26BE450", VA = "0x1826BF650")]
public ArgumentOutOfRangeException(string paramName, object actualValue, string message)
{
}
/// <summary>Gets the error message and the string representation of the invalid argument value, or only the error message if the argument value is null.</summary>
/// <returns>The text message for this exception. The value of this property takes one of two forms, as follows.
/// Condition
///
/// Value
///
/// The <paramref name="actualValue" /> is <see langword="null" />.
///
/// The <paramref name="message" /> string passed to the constructor.
///
/// The <paramref name="actualValue" /> is not <see langword="null" />.
///
/// The <paramref name="message" /> string appended with the string representation of the invalid argument value.</returns>
// Token: 0x1700008E RID: 142
// (get) Token: 0x060004F6 RID: 1270 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x1700008E")]
public override string Message
{
[Token(Token = "0x60004F6")]
[Address(RVA = "0x26BF6B0", Offset = "0x26BE4B0", VA = "0x1826BF6B0", Slot = "5")]
get
{
return null;
}
}
/// <summary>Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the invalid argument value and additional exception information.</summary>
/// <param name="info">The object that holds the serialized object data.</param>
/// <param name="context">An object that describes the source or destination of the serialized data.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> object is <see langword="null" />.</exception>
// Token: 0x060004F7 RID: 1271 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004F7")]
[Address(RVA = "0x26BF2F0", Offset = "0x26BE0F0", VA = "0x1826BF2F0", Slot = "10")]
public override void GetObjectData(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ArgumentOutOfRangeException" /> class with serialized data.</summary>
/// <param name="info">The object that holds the serialized object data.</param>
/// <param name="context">An object that describes the source or destination of the serialized data.</param>
// Token: 0x060004F8 RID: 1272 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004F8")]
[Address(RVA = "0x26BF560", Offset = "0x26BE360", VA = "0x1826BF560")]
protected ArgumentOutOfRangeException(SerializationInfo info, StreamingContext context)
{
}
// Token: 0x040001F4 RID: 500
[Token(Token = "0x40001F4")]
private static string _rangeMessage;
// Token: 0x040001F5 RID: 501
[global::Cpp2IlInjected.FieldOffset(Offset = "0x90")]
[Token(Token = "0x40001F5")]
private object m_actualValue;
}
}