m
This commit is contained in:
@@ -0,0 +1,105 @@
|
||||
using System;
|
||||
using System.Reflection;
|
||||
using System.Runtime.ConstrainedExecution;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Runtime.Serialization;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System
|
||||
{
|
||||
/// <summary>
|
||||
/// <see cref="T:System.RuntimeMethodHandle" /> is a handle to the internal metadata representation of a method.</summary>
|
||||
// Token: 0x02000199 RID: 409
|
||||
[Token(Token = "0x2000199")]
|
||||
[ComVisible(true)]
|
||||
[Serializable]
|
||||
public struct RuntimeMethodHandle : ISerializable
|
||||
{
|
||||
// Token: 0x0600103A RID: 4154 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600103A")]
|
||||
[Address(RVA = "0x593200", Offset = "0x592200", VA = "0x180593200")]
|
||||
internal RuntimeMethodHandle(IntPtr v)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600103B RID: 4155 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600103B")]
|
||||
[Address(RVA = "0x266D460", Offset = "0x266C460", VA = "0x18266D460")]
|
||||
private RuntimeMethodHandle(SerializationInfo info, StreamingContext context)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the value of this instance.</summary>
|
||||
/// <returns>A <see cref="T:System.RuntimeMethodHandle" /> that is the internal metadata representation of a method.</returns>
|
||||
// Token: 0x1700018A RID: 394
|
||||
// (get) Token: 0x0600103C RID: 4156 RVA: 0x0000CFD8 File Offset: 0x0000B1D8
|
||||
[Token(Token = "0x1700018A")]
|
||||
public IntPtr Value
|
||||
{
|
||||
[Token(Token = "0x600103C")]
|
||||
[Address(RVA = "0x63E630", Offset = "0x63D630", VA = "0x18063E630")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data necessary to deserialize the field represented by this instance.</summary>
|
||||
/// <param name="info">The object to populate with serialization information.</param>
|
||||
/// <param name="context">(Reserved) The place to store and retrieve serialized data.</param>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="info" /> is <see langword="null" />.</exception>
|
||||
/// <exception cref="T:System.Runtime.Serialization.SerializationException">
|
||||
/// <see cref="P:System.RuntimeMethodHandle.Value" /> is invalid.</exception>
|
||||
// Token: 0x0600103D RID: 4157 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600103D")]
|
||||
[Address(RVA = "0x266D2B0", Offset = "0x266C2B0", VA = "0x18266D2B0", Slot = "4")]
|
||||
public void GetObjectData(SerializationInfo info, StreamingContext context)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Indicates whether this instance is equal to a specified object.</summary>
|
||||
/// <param name="obj">A <see cref="T:System.Object" /> to compare to this instance.</param>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if <paramref name="obj" /> is a <see cref="T:System.RuntimeMethodHandle" /> and equal to the value of this instance; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x0600103E RID: 4158 RVA: 0x0000CFF0 File Offset: 0x0000B1F0
|
||||
[Token(Token = "0x600103E")]
|
||||
[Address(RVA = "0x266D1A0", Offset = "0x266C1A0", VA = "0x18266D1A0", Slot = "0")]
|
||||
[ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)]
|
||||
public override bool Equals(object obj)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
/// <summary>Returns the hash code for this instance.</summary>
|
||||
/// <returns>A 32-bit signed integer hash code.</returns>
|
||||
// Token: 0x0600103F RID: 4159 RVA: 0x0000D008 File Offset: 0x0000B208
|
||||
[Token(Token = "0x600103F")]
|
||||
[Address(RVA = "0x592FE0", Offset = "0x591FE0", VA = "0x180592FE0", Slot = "2")]
|
||||
public override int GetHashCode()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06001040 RID: 4160 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6001040")]
|
||||
[Address(RVA = "0x266D070", Offset = "0x266C070", VA = "0x18266D070")]
|
||||
internal static string ConstructInstantiation(RuntimeMethodInfo method, TypeNameFormatFlags format)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06001041 RID: 4161 RVA: 0x0000D020 File Offset: 0x0000B220
|
||||
[Token(Token = "0x6001041")]
|
||||
[Address(RVA = "0x266D420", Offset = "0x266C420", VA = "0x18266D420")]
|
||||
internal bool IsNullHandle()
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x04000684 RID: 1668
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
|
||||
[Token(Token = "0x4000684")]
|
||||
private IntPtr value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user