using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// The exception that is thrown when the value of an argument is outside the allowable range of values as defined by the invoked method.
// 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;
}
}
/// Initializes a new instance of the class.
// Token: 0x060004F2 RID: 1266 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004F2")]
[Address(RVA = "0x26BF460", Offset = "0x26BE260", VA = "0x1826BF460")]
public ArgumentOutOfRangeException()
{
}
/// Initializes a new instance of the class with the name of the parameter that causes this exception.
/// The name of the parameter that causes this exception.
// Token: 0x060004F3 RID: 1267 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004F3")]
[Address(RVA = "0x26BF500", Offset = "0x26BE300", VA = "0x1826BF500")]
public ArgumentOutOfRangeException(string paramName)
{
}
/// Initializes a new instance of the class with the name of the parameter that causes this exception and a specified error message.
/// The name of the parameter that caused the exception.
/// The message that describes the error.
// 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)
{
}
/// Initializes a new instance of the class with the parameter name, the value of the argument, and a specified error message.
/// The name of the parameter that caused the exception.
/// The value of the argument that causes this exception.
/// The message that describes the error.
// 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)
{
}
/// Gets the error message and the string representation of the invalid argument value, or only the error message if the argument value is null.
/// The text message for this exception. The value of this property takes one of two forms, as follows.
/// Condition
///
/// Value
///
/// The is .
///
/// The string passed to the constructor.
///
/// The is not .
///
/// The string appended with the string representation of the invalid argument value.
// 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;
}
}
/// Sets the object with the invalid argument value and additional exception information.
/// The object that holds the serialized object data.
/// An object that describes the source or destination of the serialized data.
/// The object is .
// 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)
{
}
/// Initializes a new instance of the class with serialized data.
/// The object that holds the serialized object data.
/// An object that describes the source or destination of the serialized data.
// 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;
}
}