m
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
using System;
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Linq.Expressions
|
||||
{
|
||||
/// <summary>Provides the base class from which the classes that represent bindings that are used to initialize members of a newly created object derive.</summary>
|
||||
// Token: 0x020000AC RID: 172
|
||||
[Token(Token = "0x20000AC")]
|
||||
public abstract class MemberBinding
|
||||
{
|
||||
/// <summary>Gets the type of binding that is represented.</summary>
|
||||
/// <returns>One of the <see cref="T:System.Linq.Expressions.MemberBindingType" /> values.</returns>
|
||||
// Token: 0x170000D6 RID: 214
|
||||
// (get) Token: 0x06000524 RID: 1316 RVA: 0x000030C0 File Offset: 0x000012C0
|
||||
[Token(Token = "0x170000D6")]
|
||||
public MemberBindingType BindingType
|
||||
{
|
||||
[Token(Token = "0x6000524")]
|
||||
[Address(RVA = "0x40F000", Offset = "0x40E000", VA = "0x18040F000")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return MemberBindingType.Assignment;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the field or property to be initialized.</summary>
|
||||
/// <returns>The <see cref="T:System.Reflection.MemberInfo" /> that represents the field or property to be initialized.</returns>
|
||||
// Token: 0x170000D7 RID: 215
|
||||
// (get) Token: 0x06000525 RID: 1317 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170000D7")]
|
||||
public MemberInfo Member
|
||||
{
|
||||
[Token(Token = "0x6000525")]
|
||||
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user