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: 0x02000285 RID: 645 [Token(Token = "0x2000285")] [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: 0x0600176E RID: 5998 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600176E")] [Address(RVA = "0x2934850", Offset = "0x2933650", VA = "0x182934850")] 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: 0x0600176F RID: 5999 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600176F")] [Address(RVA = "0x2934810", Offset = "0x2933610", VA = "0x182934810")] 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: 0x06001770 RID: 6000 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001770")] [Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")] protected EndOfStreamException(SerializationInfo info, StreamingContext context) { } } }