53 lines
3.1 KiB
C#
53 lines
3.1 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>The exception that is thrown when an invoked method is not supported, or when there is an attempt to read, seek, or write to a stream that does not support the invoked functionality.</summary>
|
|
// Token: 0x02000127 RID: 295
|
|
[Token(Token = "0x2000127")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public class NotSupportedException : SystemException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.NotSupportedException" /> class, setting the <see cref="P:System.Exception.Message" /> property of the new instance to a system-supplied message that describes the error. This message takes into account the current system culture.</summary>
|
|
// Token: 0x06000AA6 RID: 2726 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000AA6")]
|
|
[Address(RVA = "0x2D6E8E0", Offset = "0x2D6D8E0", VA = "0x182D6E8E0")]
|
|
public NotSupportedException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.NotSupportedException" /> class with a specified error message.</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: 0x06000AA7 RID: 2727 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000AA7")]
|
|
[Address(RVA = "0x2D6E940", Offset = "0x2D6D940", VA = "0x182D6E940")]
|
|
public NotSupportedException(string message)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.NotSupportedException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
|
|
/// <param name="message">The error message that explains the reason for the exception.</param>
|
|
/// <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
|
|
// Token: 0x06000AA8 RID: 2728 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000AA8")]
|
|
[Address(RVA = "0x2D6E8B0", Offset = "0x2D6D8B0", VA = "0x182D6E8B0")]
|
|
public NotSupportedException(string message, Exception innerException)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.NotSupportedException" /> class with serialized data.</summary>
|
|
/// <param name="info">The object that holds the serialized object data.</param>
|
|
/// <param name="context">The contextual information about the source or destination.</param>
|
|
// Token: 0x06000AA9 RID: 2729 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000AA9")]
|
|
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
|
|
protected NotSupportedException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|