This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+80
View File
@@ -0,0 +1,80 @@
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 method that does not exist.</summary>
// Token: 0x02000122 RID: 290
[Token(Token = "0x2000122")]
[ComVisible(true)]
[Serializable]
public class MissingMethodException : MissingMemberException, ISerializable
{
/// <summary>Initializes a new instance of the <see cref="T:System.MissingMethodException" /> class.</summary>
// Token: 0x06000A96 RID: 2710 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A96")]
[Address(RVA = "0x2D6B230", Offset = "0x2D6A230", VA = "0x182D6B230")]
public MissingMethodException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.MissingMethodException" /> class with a specified error message.</summary>
/// <param name="message">A <see cref="T:System.String" /> that describes the error.</param>
// Token: 0x06000A97 RID: 2711 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A97")]
[Address(RVA = "0x2D6B2B0", Offset = "0x2D6A2B0", VA = "0x182D6B2B0")]
public MissingMethodException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.MissingMethodException" /> 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: 0x06000A98 RID: 2712 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A98")]
[Address(RVA = "0x2D6AB00", Offset = "0x2D69B00", VA = "0x182D6AB00")]
protected MissingMethodException(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Gets the text string showing the class name, the method name, and the signature of the missing method. This property is read-only.</summary>
/// <returns>The error message string.</returns>
// Token: 0x170000D7 RID: 215
// (get) Token: 0x06000A99 RID: 2713 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170000D7")]
public override string Message
{
[Token(Token = "0x6000A99")]
[Address(RVA = "0x2D6B300", Offset = "0x2D6A300", VA = "0x182D6B300", Slot = "5")]
get
{
return null;
}
}
/// <summary>Initializes a new instance of the <see cref="T:System.MissingMethodException" /> class with the specified class name and method name.</summary>
/// <param name="className">The name of the class in which access to a nonexistent method was attempted.</param>
/// <param name="methodName">The name of the method that cannot be accessed.</param>
// Token: 0x06000A9A RID: 2714 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A9A")]
[Address(RVA = "0x2D6AB70", Offset = "0x2D69B70", VA = "0x182D6AB70")]
public MissingMethodException(string className, string methodName)
{
}
// Token: 0x06000A9B RID: 2715 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A9B")]
[Address(RVA = "0x2D6B1B0", Offset = "0x2D6A1B0", VA = "0x182D6B1B0")]
private MissingMethodException(string className, string methodName, string signature, string message)
{
}
// Token: 0x0400046D RID: 1133
[global::Cpp2IlInjected.FieldOffset(Offset = "0xA0")]
[Token(Token = "0x400046D")]
[NonSerialized]
private string signature;
}
}