43 lines
1.8 KiB
C#
43 lines
1.8 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 invalid attempt to access a private or protected field inside a class.</summary>
|
|
// Token: 0x020000EF RID: 239
|
|
[Token(Token = "0x20000EF")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public class FieldAccessException : MemberAccessException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.FieldAccessException" /> class.</summary>
|
|
// Token: 0x060008EF RID: 2287 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60008EF")]
|
|
[Address(RVA = "0x7241D0", Offset = "0x7231D0", VA = "0x1807241D0")]
|
|
public FieldAccessException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.FieldAccessException" /> class with a specified error message.</summary>
|
|
/// <param name="message">The error message that explains the reason for the exception.</param>
|
|
// Token: 0x060008F0 RID: 2288 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60008F0")]
|
|
[Address(RVA = "0x724220", Offset = "0x723220", VA = "0x180724220")]
|
|
public FieldAccessException(string message)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.FieldAccessException" /> 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: 0x060008F1 RID: 2289 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60008F1")]
|
|
[Address(RVA = "0x71ABC0", Offset = "0x719BC0", VA = "0x18071ABC0")]
|
|
protected FieldAccessException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|