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
+14
View File
@@ -0,0 +1,14 @@
using System;
using System.ComponentModel;
using Cpp2IlInjected;
namespace Microsoft.CSharp.RuntimeBinder
{
/// <summary>Contains factory methods to create dynamic call site binders for CSharp.</summary>
// Token: 0x02000002 RID: 2
[Token(Token = "0x2000002")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static class Binder
{
}
}
@@ -0,0 +1,24 @@
using System;
using System.ComponentModel;
using Cpp2IlInjected;
namespace Microsoft.CSharp.RuntimeBinder
{
/// <summary>Represents information about C# dynamic operations that are specific to particular arguments at a call site. Instances of this class are generated by the C# compiler.</summary>
// Token: 0x02000003 RID: 3
[Token(Token = "0x2000003")]
[EditorBrowsable(EditorBrowsableState.Never)]
public sealed class CSharpArgumentInfo
{
// Token: 0x06000001 RID: 1 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000001")]
[Address(RVA = "0x49A4C0", Offset = "0x4994C0", VA = "0x18049A4C0")]
private CSharpArgumentInfo(CSharpArgumentInfoFlags flags, string name)
{
}
// Token: 0x04000001 RID: 1
[Token(Token = "0x4000001")]
internal static readonly CSharpArgumentInfo None;
}
}
@@ -0,0 +1,43 @@
using System;
using System.ComponentModel;
using Cpp2IlInjected;
namespace Microsoft.CSharp.RuntimeBinder
{
/// <summary>Represents information about C# dynamic operations that are specific to particular arguments at a call site. Instances of this class are generated by the C# compiler.</summary>
// Token: 0x02000004 RID: 4
[Token(Token = "0x2000004")]
[Flags]
[EditorBrowsable(EditorBrowsableState.Never)]
public enum CSharpArgumentInfoFlags
{
/// <summary>No additional information to represent.</summary>
// Token: 0x04000005 RID: 5
[Token(Token = "0x4000005")]
None = 0,
/// <summary>The argument's compile-time type should be considered during binding.</summary>
// Token: 0x04000006 RID: 6
[Token(Token = "0x4000006")]
UseCompileTimeType = 1,
/// <summary>The argument is a constant.</summary>
// Token: 0x04000007 RID: 7
[Token(Token = "0x4000007")]
Constant = 2,
/// <summary>The argument is a named argument.</summary>
// Token: 0x04000008 RID: 8
[Token(Token = "0x4000008")]
NamedArgument = 4,
/// <summary>The argument is passed to a ref parameter.</summary>
// Token: 0x04000009 RID: 9
[Token(Token = "0x4000009")]
IsRef = 8,
/// <summary>The argument is passed to an out parameter.</summary>
// Token: 0x0400000A RID: 10
[Token(Token = "0x400000A")]
IsOut = 16,
/// <summary>The argument is a <see cref="T:System.Type" /> indicating an actual type name used in source. Used only for target objects in static calls.</summary>
// Token: 0x0400000B RID: 11
[Token(Token = "0x400000B")]
IsStaticType = 32
}
}
@@ -0,0 +1,55 @@
using System;
using System.ComponentModel;
using Cpp2IlInjected;
namespace Microsoft.CSharp.RuntimeBinder
{
/// <summary>Represents information about C# dynamic operations that are not specific to particular arguments at a call site. Instances of this class are generated by the C# compiler.</summary>
// Token: 0x02000005 RID: 5
[Token(Token = "0x2000005")]
[Flags]
[EditorBrowsable(EditorBrowsableState.Never)]
public enum CSharpBinderFlags
{
/// <summary>There is no additional information required for this binder.</summary>
// Token: 0x0400000D RID: 13
[Token(Token = "0x400000D")]
None = 0,
/// <summary>The evaluation of this binder happens in a checked context.</summary>
// Token: 0x0400000E RID: 14
[Token(Token = "0x400000E")]
CheckedContext = 1,
/// <summary>The binder represents an invoke on a simple name.</summary>
// Token: 0x0400000F RID: 15
[Token(Token = "0x400000F")]
InvokeSimpleName = 2,
/// <summary>The binder represents an invoke on a specialname.</summary>
// Token: 0x04000010 RID: 16
[Token(Token = "0x4000010")]
InvokeSpecialName = 4,
/// <summary>The binder represents a logical AND or logical OR that is part of a conditional logical operator evaluation.</summary>
// Token: 0x04000011 RID: 17
[Token(Token = "0x4000011")]
BinaryOperationLogical = 8,
/// <summary>The binder represents an explicit conversion.</summary>
// Token: 0x04000012 RID: 18
[Token(Token = "0x4000012")]
ConvertExplicit = 16,
/// <summary>The binder represents an implicit conversion for use in an array creation expression.</summary>
// Token: 0x04000013 RID: 19
[Token(Token = "0x4000013")]
ConvertArrayIndex = 32,
/// <summary>The result of any bind is going to be indexed get a set index or get index binder.</summary>
// Token: 0x04000014 RID: 20
[Token(Token = "0x4000014")]
ResultIndexed = 64,
/// <summary>The value in this set index or set member comes a compound assignment operator.</summary>
// Token: 0x04000015 RID: 21
[Token(Token = "0x4000015")]
ValueFromCompoundAssignment = 128,
/// <summary>The binder is used in a position that does not require a result, and can therefore bind to a void returning method.</summary>
// Token: 0x04000016 RID: 22
[Token(Token = "0x4000016")]
ResultDiscarded = 256
}
}