using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.IO { /// The exception that is thrown when reading is attempted past the end of a stream. // Token: 0x0200028C RID: 652 [Token(Token = "0x200028C")] [ComVisible(true)] [Serializable] public class EndOfStreamException : IOException { /// Initializes a new instance of the class with its message string set to a system-supplied message and its HRESULT set to COR_E_ENDOFSTREAM. // Token: 0x060017AD RID: 6061 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017AD")] [Address(RVA = "0x2BAC090", Offset = "0x2BAB090", VA = "0x182BAC090")] public EndOfStreamException() { } /// Initializes a new instance of the class with its message string set to and its HRESULT set to COR_E_ENDOFSTREAM. /// A string that describes the error. The content of is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture. // Token: 0x060017AE RID: 6062 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017AE")] [Address(RVA = "0x2BAC060", Offset = "0x2BAB060", VA = "0x182BAC060")] public EndOfStreamException(string message) { } /// Initializes a new instance of the class with the specified serialization and context information. /// The that holds the serialized object data about the exception being thrown. /// The that contains contextual information about the source or destination. // Token: 0x060017AF RID: 6063 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60017AF")] [Address(RVA = "0x71ABC0", Offset = "0x719BC0", VA = "0x18071ABC0")] protected EndOfStreamException(SerializationInfo info, StreamingContext context) { } } }