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: 0x020000A1 RID: 161 [Token(Token = "0x20000A1")] public abstract class MemberBinding { /// Gets the type of binding that is represented. /// One of the values. // Token: 0x170000B6 RID: 182 // (get) Token: 0x06000498 RID: 1176 RVA: 0x00002DF0 File Offset: 0x00000FF0 [Token(Token = "0x170000B6")] public MemberBindingType BindingType { [Token(Token = "0x6000498")] [Address(RVA = "0x3FA560", Offset = "0x3F9360", VA = "0x1803FA560")] [CompilerGenerated] get { return MemberBindingType.Assignment; } } /// Gets the field or property to be initialized. /// The that represents the field or property to be initialized. // Token: 0x170000B7 RID: 183 // (get) Token: 0x06000499 RID: 1177 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170000B7")] public MemberInfo Member { [Token(Token = "0x6000499")] [Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")] [CompilerGenerated] get { return null; } } } }