using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Dynamic
{
/// Represents the dynamic binding and a binding logic of an object participating in the dynamic binding.
// Token: 0x0200026A RID: 618
[Token(Token = "0x200026A")]
public class DynamicMetaObject
{
/// Initializes a new instance of the class.
/// The expression representing this during the dynamic binding process.
/// The set of binding restrictions under which the binding is valid.
// Token: 0x06000C5D RID: 3165 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C5D")]
[Address(RVA = "0x860E40", Offset = "0x85FE40", VA = "0x180860E40")]
public DynamicMetaObject(Expression expression, BindingRestrictions restrictions)
{
}
/// Initializes a new instance of the class.
/// The expression representing this during the dynamic binding process.
/// The set of binding restrictions under which the binding is valid.
/// The runtime value represented by the .
// Token: 0x06000C5E RID: 3166 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C5E")]
[Address(RVA = "0x860F50", Offset = "0x85FF50", VA = "0x180860F50")]
public DynamicMetaObject(Expression expression, BindingRestrictions restrictions, object value)
{
}
/// The expression representing the during the dynamic binding process.
/// The expression representing the during the dynamic binding process.
// Token: 0x17000272 RID: 626
// (get) Token: 0x06000C5F RID: 3167 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000272")]
public Expression Expression
{
[Token(Token = "0x6000C5F")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
[CompilerGenerated]
get
{
return null;
}
}
/// The set of binding restrictions under which the binding is valid.
/// The set of binding restrictions.
// Token: 0x17000273 RID: 627
// (get) Token: 0x06000C60 RID: 3168 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000273")]
public BindingRestrictions Restrictions
{
[Token(Token = "0x6000C60")]
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
[CompilerGenerated]
get
{
return null;
}
}
/// The runtime value represented by this .
/// The runtime value represented by this .
// Token: 0x17000274 RID: 628
// (get) Token: 0x06000C61 RID: 3169 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000274")]
public object Value
{
[Token(Token = "0x6000C61")]
[Address(RVA = "0x4157C0", Offset = "0x4147C0", VA = "0x1804157C0")]
[CompilerGenerated]
get
{
return null;
}
}
/// Gets a value indicating whether the has the runtime value.
/// True if the has the runtime value, otherwise false.
// Token: 0x17000275 RID: 629
// (get) Token: 0x06000C62 RID: 3170 RVA: 0x000063D8 File Offset: 0x000045D8
[Token(Token = "0x17000275")]
public bool HasValue
{
[Token(Token = "0x6000C62")]
[Address(RVA = "0x51F260", Offset = "0x51E260", VA = "0x18051F260")]
[CompilerGenerated]
get
{
return default(bool);
}
}
/// Performs the binding of the dynamic get member operation.
/// An instance of the that represents the details of the dynamic operation.
/// The new representing the result of the binding.
// Token: 0x06000C63 RID: 3171 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C63")]
[Address(RVA = "0x8609C0", Offset = "0x85F9C0", VA = "0x1808609C0", Slot = "4")]
public virtual DynamicMetaObject BindGetMember(GetMemberBinder binder)
{
return null;
}
/// Performs the binding of the dynamic set member operation.
/// An instance of the that represents the details of the dynamic operation.
/// The representing the value for the set member operation.
/// The new representing the result of the binding.
// Token: 0x06000C64 RID: 3172 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C64")]
[Address(RVA = "0x860A70", Offset = "0x85FA70", VA = "0x180860A70", Slot = "5")]
public virtual DynamicMetaObject BindSetMember(SetMemberBinder binder, DynamicMetaObject value)
{
return null;
}
/// Returns the enumeration of all dynamic member names.
/// The list of dynamic member names.
// Token: 0x06000C65 RID: 3173 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C65")]
[Address(RVA = "0x860DC0", Offset = "0x85FDC0", VA = "0x180860DC0", Slot = "6")]
public virtual IEnumerable GetDynamicMemberNames()
{
return null;
}
/// Creates a meta-object for the specified object.
/// The object to get a meta-object for.
/// The expression representing this during the dynamic binding process.
/// If the given object implements and is not a remote object from outside the current AppDomain, returns the object's specific meta-object returned by . Otherwise a plain new meta-object with no restrictions is created and returned.
// Token: 0x06000C66 RID: 3174 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C66")]
[Address(RVA = "0x860B40", Offset = "0x85FB40", VA = "0x180860B40")]
public static DynamicMetaObject Create(object value, Expression expression)
{
return null;
}
/// Represents an empty array of type . This field is read only.
// Token: 0x040004A9 RID: 1193
[Token(Token = "0x40004A9")]
public static readonly DynamicMetaObject[] EmptyMetaObjects;
}
}