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: 0x02000120 RID: 288
|
|
[Token(Token = "0x2000120")]
|
|
[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: 0x06000A74 RID: 2676 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A74")]
|
|
[Address(RVA = "0x2602990", Offset = "0x2601790", VA = "0x182602990")]
|
|
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: 0x06000A75 RID: 2677 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A75")]
|
|
[Address(RVA = "0x26029F0", Offset = "0x26017F0", VA = "0x1826029F0")]
|
|
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: 0x06000A76 RID: 2678 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A76")]
|
|
[Address(RVA = "0x2602960", Offset = "0x2601760", VA = "0x182602960")]
|
|
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: 0x06000A77 RID: 2679 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A77")]
|
|
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
|
|
protected NotSupportedException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|