This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
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 method, such as accessing a private method from partially trusted code.</summary>
// Token: 0x02000117 RID: 279
[Token(Token = "0x2000117")]
[ComVisible(true)]
[Serializable]
public class MethodAccessException : MemberAccessException
{
/// <summary>Initializes a new instance of the <see cref="T:System.MethodAccessException" /> class, setting the <see cref="P:System.Exception.Message" /> property of the new instance to a system-supplied message that describes the error, such as "Attempt to access the method failed." This message takes into account the current system culture.</summary>
// Token: 0x06000A56 RID: 2646 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A56")]
[Address(RVA = "0x25FEA30", Offset = "0x25FD830", VA = "0x1825FEA30")]
public MethodAccessException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.MethodAccessException" /> class with a specified error message.</summary>
/// <param name="message">A <see cref="T:System.String" /> that describes the error.</param>
// Token: 0x06000A57 RID: 2647 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A57")]
[Address(RVA = "0x25FEAA0", Offset = "0x25FD8A0", VA = "0x1825FEAA0")]
public MethodAccessException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.MethodAccessException" /> 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: 0x06000A58 RID: 2648 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A58")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected MethodAccessException(SerializationInfo info, StreamingContext context)
{
}
}
}