using System; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Text { /// The exception that is thrown when a decoder fallback operation fails. This class cannot be inherited. // Token: 0x020001C2 RID: 450 [Token(Token = "0x20001C2")] [Serializable] public sealed class DecoderFallbackException : ArgumentException { /// Initializes a new instance of the class. // Token: 0x06001109 RID: 4361 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001109")] [Address(RVA = "0x2F18790", Offset = "0x2F17590", VA = "0x182F18790")] public DecoderFallbackException() { } // Token: 0x0600110A RID: 4362 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600110A")] [Address(RVA = "0x4EF7B0", Offset = "0x4EE5B0", VA = "0x1804EF7B0")] internal DecoderFallbackException(SerializationInfo info, StreamingContext context) { } /// Initializes a new instance of the class. Parameters specify the error message, the array of bytes being decoded, and the index of the byte that cannot be decoded. /// An error message. /// The input byte array. /// The index position in of the byte that cannot be decoded. // Token: 0x0600110B RID: 4363 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600110B")] [Address(RVA = "0x2F187F0", Offset = "0x2F175F0", VA = "0x182F187F0")] public DecoderFallbackException(string message, byte[] bytesUnknown, int index) { } // Token: 0x040008E0 RID: 2272 [FieldOffset(Offset = "0x90")] [Token(Token = "0x40008E0")] private byte[] bytesUnknown; // Token: 0x040008E1 RID: 2273 [FieldOffset(Offset = "0x98")] [Token(Token = "0x40008E1")] private int index; } }