Files
Aug2021-Cpp2IL-Dump/mscorlib/System/RuntimeMethodHandle.cs
T
2026-04-10 22:50:51 +02:00

106 lines
4.1 KiB
C#

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: 0x02000192 RID: 402
[Token(Token = "0x2000192")]
[ComVisible(true)]
[Serializable]
public struct RuntimeMethodHandle : ISerializable
{
// Token: 0x06001004 RID: 4100 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001004")]
[Address(RVA = "0x461A30", Offset = "0x460830", VA = "0x180461A30")]
internal RuntimeMethodHandle(IntPtr v)
{
}
// Token: 0x06001005 RID: 4101 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001005")]
[Address(RVA = "0x298FF70", Offset = "0x298ED70", VA = "0x18298FF70")]
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: 0x17000183 RID: 387
// (get) Token: 0x06001006 RID: 4102 RVA: 0x0000CCC0 File Offset: 0x0000AEC0
[Token(Token = "0x17000183")]
public IntPtr Value
{
[Token(Token = "0x6001006")]
[Address(RVA = "0x41D090", Offset = "0x41BE90", VA = "0x18041D090")]
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: 0x06001007 RID: 4103 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001007")]
[Address(RVA = "0x298FDC0", Offset = "0x298EBC0", VA = "0x18298FDC0", 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: 0x06001008 RID: 4104 RVA: 0x0000CCD8 File Offset: 0x0000AED8
[Token(Token = "0x6001008")]
[Address(RVA = "0x298FCB0", Offset = "0x298EAB0", VA = "0x18298FCB0", 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: 0x06001009 RID: 4105 RVA: 0x0000CCF0 File Offset: 0x0000AEF0
[Token(Token = "0x6001009")]
[Address(RVA = "0x164A950", Offset = "0x1649750", VA = "0x18164A950", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
// Token: 0x0600100A RID: 4106 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600100A")]
[Address(RVA = "0x298FB80", Offset = "0x298E980", VA = "0x18298FB80")]
internal static string ConstructInstantiation(RuntimeMethodInfo method, TypeNameFormatFlags format)
{
return null;
}
// Token: 0x0600100B RID: 4107 RVA: 0x0000CD08 File Offset: 0x0000AF08
[Token(Token = "0x600100B")]
[Address(RVA = "0x298FF30", Offset = "0x298ED30", VA = "0x18298FF30")]
internal bool IsNullHandle()
{
return default(bool);
}
// Token: 0x0400067A RID: 1658
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x400067A")]
private IntPtr value;
}
}