Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

68 lines
3.0 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>The exception that is thrown when there is an attempt to dynamically access a field that does not exist. If a field in a class library has been removed or renamed, recompile any assemblies that reference that library.</summary>
// Token: 0x02000120 RID: 288
[Token(Token = "0x2000120")]
[ComVisible(true)]
[Serializable]
public class MissingFieldException : MissingMemberException, ISerializable
{
/// <summary>Initializes a new instance of the <see cref="T:System.MissingFieldException" /> class.</summary>
// Token: 0x06000A8B RID: 2699 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A8B")]
[Address(RVA = "0x2D6AA80", Offset = "0x2D69A80", VA = "0x182D6AA80")]
public MissingFieldException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.MissingFieldException" /> class with a specified error message.</summary>
/// <param name="message">A <see cref="T:System.String" /> that describes the error.</param>
// Token: 0x06000A8C RID: 2700 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A8C")]
[Address(RVA = "0x2D6AB20", Offset = "0x2D69B20", VA = "0x182D6AB20")]
public MissingFieldException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.MissingFieldException" /> 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: 0x06000A8D RID: 2701 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A8D")]
[Address(RVA = "0x2D6AB00", Offset = "0x2D69B00", VA = "0x182D6AB00")]
protected MissingFieldException(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Gets the text string showing the signature of the missing field, the class name, and the field name. This property is read-only.</summary>
/// <returns>The error message string.</returns>
// Token: 0x170000D5 RID: 213
// (get) Token: 0x06000A8E RID: 2702 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170000D5")]
public override string Message
{
[Token(Token = "0x6000A8E")]
[Address(RVA = "0x2D6AC00", Offset = "0x2D69C00", VA = "0x182D6AC00", Slot = "5")]
get
{
return null;
}
}
/// <summary>Initializes a new instance of the <see cref="T:System.MissingFieldException" /> class with the specified class name and field name.</summary>
/// <param name="className">The name of the class in which access to a nonexistent field was attempted.</param>
/// <param name="fieldName">The name of the field that cannot be accessed.</param>
// Token: 0x06000A8F RID: 2703 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A8F")]
[Address(RVA = "0x2D6AB70", Offset = "0x2D69B70", VA = "0x182D6AB70")]
public MissingFieldException(string className, string fieldName)
{
}
}
}