Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

44 lines
1.3 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Runtime.CompilerServices
{
/// <summary>A dynamic call site base class. This type is used as a parameter type to the dynamic site targets.</summary>
// Token: 0x02000259 RID: 601
[Token(Token = "0x2000259")]
public class CallSite
{
// Token: 0x06000BF7 RID: 3063 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000BF7")]
[Address(RVA = "0x493D90", Offset = "0x492D90", VA = "0x180493D90")]
internal CallSite(CallSiteBinder binder)
{
}
/// <summary>Class responsible for binding dynamic operations on the dynamic site.</summary>
/// <returns>The <see cref="T:System.Runtime.CompilerServices.CallSiteBinder" /> object responsible for binding dynamic operations.</returns>
// Token: 0x17000261 RID: 609
// (get) Token: 0x06000BF8 RID: 3064 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000261")]
public CallSiteBinder Binder
{
[Token(Token = "0x6000BF8")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
get
{
return null;
}
}
// Token: 0x0400048E RID: 1166
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400048E")]
internal readonly CallSiteBinder _binder;
// Token: 0x0400048F RID: 1167
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400048F")]
internal bool _match;
}
}