Files
2026-04-10 22:50:51 +02:00

43 lines
2.3 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.IO
{
/// <summary>The exception that is thrown when reading is attempted past the end of a stream.</summary>
// Token: 0x02000285 RID: 645
[Token(Token = "0x2000285")]
[ComVisible(true)]
[Serializable]
public class EndOfStreamException : IOException
{
/// <summary>Initializes a new instance of the <see cref="T:System.IO.EndOfStreamException" /> class with its message string set to a system-supplied message and its HRESULT set to COR_E_ENDOFSTREAM.</summary>
// Token: 0x0600176E RID: 5998 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600176E")]
[Address(RVA = "0x2934850", Offset = "0x2933650", VA = "0x182934850")]
public EndOfStreamException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.IO.EndOfStreamException" /> class with its message string set to <paramref name="message" /> and its HRESULT set to COR_E_ENDOFSTREAM.</summary>
/// <param name="message">A string that describes the error. The content of <paramref name="message" /> 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.</param>
// Token: 0x0600176F RID: 5999 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600176F")]
[Address(RVA = "0x2934810", Offset = "0x2933610", VA = "0x182934810")]
public EndOfStreamException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.IO.EndOfStreamException" /> class with the specified serialization and context information.</summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
// 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)
{
}
}
}