Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/MemberAccessException.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

43 lines
1.7 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>The exception that is thrown when an attempt to access a class member fails.</summary>
// Token: 0x0200011D RID: 285
[Token(Token = "0x200011D")]
[ComVisible(true)]
[Serializable]
public class MemberAccessException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.MemberAccessException" /> class.</summary>
// Token: 0x06000A85 RID: 2693 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A85")]
[Address(RVA = "0x2D6A970", Offset = "0x2D69970", VA = "0x182D6A970")]
public MemberAccessException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.MemberAccessException" /> class with a specified error message.</summary>
/// <param name="message">The message that describes the error.</param>
// Token: 0x06000A86 RID: 2694 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A86")]
[Address(RVA = "0x2D6A940", Offset = "0x2D69940", VA = "0x182D6A940")]
public MemberAccessException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.MemberAccessException" /> 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: 0x06000A87 RID: 2695 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A87")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected MemberAccessException(SerializationInfo info, StreamingContext context)
{
}
}
}