using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Linq.Expressions
{
/// Provides the base class from which the classes that represent bindings that are used to initialize members of a newly created object derive.
// Token: 0x020000AC RID: 172
[Token(Token = "0x20000AC")]
public abstract class MemberBinding
{
/// Gets the type of binding that is represented.
/// One of the values.
// 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;
}
}
/// Gets the field or property to be initialized.
/// The that represents the field or property to be initialized.
// 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;
}
}
}
}