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 a path or fully qualified file name is longer than the system-defined maximum length.</summary>
// Token: 0x02000293 RID: 659
[Token(Token = "0x2000293")]
[ComVisible(true)]
[Serializable]
public class PathTooLongException : IOException
{
/// <summary>Initializes a new instance of the <see cref="T:System.IO.PathTooLongException" /> class with its HRESULT set to COR_E_PATHTOOLONG.</summary>
// Token: 0x060017EF RID: 6127 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017EF")]
[Address(RVA = "0x2941750", Offset = "0x2940550", VA = "0x182941750")]
public PathTooLongException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.IO.PathTooLongException" /> class with its message string set to <paramref name="message" /> and its HRESULT set to COR_E_PATHTOOLONG.</summary>
/// <param name="message">A <see cref="T:System.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: 0x060017F0 RID: 6128 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017F0")]
[Address(RVA = "0x2941710", Offset = "0x2940510", VA = "0x182941710")]
public PathTooLongException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.IO.PathTooLongException" /> 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: 0x060017F1 RID: 6129 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60017F1")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected PathTooLongException(SerializationInfo info, StreamingContext context)
{
}
}
}