Files
2026-04-10 22:50:51 +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: 0x02000119 RID: 281
[Token(Token = "0x2000119")]
[ComVisible(true)]
[Serializable]
public class MissingFieldException : MissingMemberException, ISerializable
{
/// <summary>Initializes a new instance of the <see cref="T:System.MissingFieldException" /> class.</summary>
// Token: 0x06000A59 RID: 2649 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A59")]
[Address(RVA = "0x25FEAE0", Offset = "0x25FD8E0", VA = "0x1825FEAE0")]
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: 0x06000A5A RID: 2650 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A5A")]
[Address(RVA = "0x25FEB80", Offset = "0x25FD980", VA = "0x1825FEB80")]
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: 0x06000A5B RID: 2651 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A5B")]
[Address(RVA = "0x25FEB60", Offset = "0x25FD960", VA = "0x1825FEB60")]
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: 0x170000D0 RID: 208
// (get) Token: 0x06000A5C RID: 2652 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170000D0")]
public override string Message
{
[Token(Token = "0x6000A5C")]
[Address(RVA = "0x25FEC60", Offset = "0x25FDA60", VA = "0x1825FEC60", 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: 0x06000A5D RID: 2653 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A5D")]
[Address(RVA = "0x25FEBD0", Offset = "0x25FD9D0", VA = "0x1825FEBD0")]
public MissingFieldException(string className, string fieldName)
{
}
}
}