41 lines
2.0 KiB
C#
41 lines
2.0 KiB
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.IO
|
|
{
|
|
/// <summary>The exception thrown when the internal buffer overflows.</summary>
|
|
// Token: 0x02000200 RID: 512
|
|
[Token(Token = "0x2000200")]
|
|
[Serializable]
|
|
public class InternalBufferOverflowException : SystemException
|
|
{
|
|
/// <summary>Initializes a new default instance of the <see cref="T:System.IO.InternalBufferOverflowException" /> class.</summary>
|
|
// Token: 0x06000D40 RID: 3392 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000D40")]
|
|
[Address(RVA = "0xDD51B0", Offset = "0xDD41B0", VA = "0x180DD51B0")]
|
|
public InternalBufferOverflowException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.IO.InternalBufferOverflowException" /> class with the error message to be displayed specified.</summary>
|
|
/// <param name="message">The message to be given for the exception.</param>
|
|
// Token: 0x06000D41 RID: 3393 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000D41")]
|
|
[Address(RVA = "0xD1FC10", Offset = "0xD1EC10", VA = "0x180D1FC10")]
|
|
public InternalBufferOverflowException(string message)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new, empty instance of the <see cref="T:System.IO.InternalBufferOverflowException" /> class that is serializable using the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> objects.</summary>
|
|
/// <param name="info">The information required to serialize the T:System.IO.InternalBufferOverflowException object.</param>
|
|
/// <param name="context">The source and destination of the serialized stream associated with the T:System.IO.InternalBufferOverflowException object.</param>
|
|
// Token: 0x06000D42 RID: 3394 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000D42")]
|
|
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
|
|
protected InternalBufferOverflowException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|