81 lines
3.4 KiB
C#
81 lines
3.4 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 method that does not exist.</summary>
|
|
// Token: 0x0200011B RID: 283
|
|
[Token(Token = "0x200011B")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public class MissingMethodException : MissingMemberException, ISerializable
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.MissingMethodException" /> class.</summary>
|
|
// Token: 0x06000A64 RID: 2660 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A64")]
|
|
[Address(RVA = "0x25FF290", Offset = "0x25FE090", VA = "0x1825FF290")]
|
|
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: 0x06000A65 RID: 2661 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A65")]
|
|
[Address(RVA = "0x25FF310", Offset = "0x25FE110", VA = "0x1825FF310")]
|
|
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: 0x06000A66 RID: 2662 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A66")]
|
|
[Address(RVA = "0x25FEB60", Offset = "0x25FD960", VA = "0x1825FEB60")]
|
|
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: 0x170000D2 RID: 210
|
|
// (get) Token: 0x06000A67 RID: 2663 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x170000D2")]
|
|
public override string Message
|
|
{
|
|
[Token(Token = "0x6000A67")]
|
|
[Address(RVA = "0x25FF360", Offset = "0x25FE160", VA = "0x1825FF360", 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: 0x06000A68 RID: 2664 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A68")]
|
|
[Address(RVA = "0x25FEBD0", Offset = "0x25FD9D0", VA = "0x1825FEBD0")]
|
|
public MissingMethodException(string className, string methodName)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000A69 RID: 2665 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A69")]
|
|
[Address(RVA = "0x25FF210", Offset = "0x25FE010", VA = "0x1825FF210")]
|
|
private MissingMethodException(string className, string methodName, string signature, string message)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04000463 RID: 1123
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0xA0")]
|
|
[Token(Token = "0x4000463")]
|
|
[NonSerialized]
|
|
private string signature;
|
|
}
|
|
}
|