Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x0200028C RID: 652
[Token(Token = "0x200028C")]
[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: 0x060017AD RID: 6061 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017AD")]
[Address(RVA = "0x2BAC090", Offset = "0x2BAB090", VA = "0x182BAC090")]
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: 0x060017AE RID: 6062 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017AE")]
[Address(RVA = "0x2BAC060", Offset = "0x2BAB060", VA = "0x182BAC060")]
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: 0x060017AF RID: 6063 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017AF")]
[Address(RVA = "0x71ABC0", Offset = "0x719BC0", VA = "0x18071ABC0")]
protected EndOfStreamException(SerializationInfo info, StreamingContext context)
{
}
}
}