a
This commit is contained in:
@@ -0,0 +1,116 @@
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Linq.Expressions
|
||||
{
|
||||
/// <summary>Represents accessing a field or property.</summary>
|
||||
// Token: 0x020000A2 RID: 162
|
||||
[Token(Token = "0x20000A2")]
|
||||
[DebuggerTypeProxy(typeof(Expression.MemberExpressionProxy))]
|
||||
public class MemberExpression : Expression
|
||||
{
|
||||
/// <summary>Gets the field or property to be accessed.</summary>
|
||||
/// <returns>The <see cref="T:System.Reflection.MemberInfo" /> that represents the field or property to be accessed.</returns>
|
||||
// Token: 0x170000B8 RID: 184
|
||||
// (get) Token: 0x0600049A RID: 1178 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170000B8")]
|
||||
public MemberInfo Member
|
||||
{
|
||||
[Token(Token = "0x600049A")]
|
||||
[Address(RVA = "0x539EE0", Offset = "0x538CE0", VA = "0x180539EE0")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the containing object of the field or property.</summary>
|
||||
/// <returns>An <see cref="T:System.Linq.Expressions.Expression" /> that represents the containing object of the field or property.</returns>
|
||||
// Token: 0x170000B9 RID: 185
|
||||
// (get) Token: 0x0600049B RID: 1179 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170000B9")]
|
||||
public Expression Expression
|
||||
{
|
||||
[Token(Token = "0x600049B")]
|
||||
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0600049C RID: 1180 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600049C")]
|
||||
[Address(RVA = "0x57CFF0", Offset = "0x57BDF0", VA = "0x18057CFF0")]
|
||||
internal MemberExpression(Expression expression)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600049D RID: 1181 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600049D")]
|
||||
[Address(RVA = "0x57CE80", Offset = "0x57BC80", VA = "0x18057CE80")]
|
||||
internal static PropertyExpression Make(Expression expression, PropertyInfo property)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x0600049E RID: 1182 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600049E")]
|
||||
[Address(RVA = "0x57CEF0", Offset = "0x57BCF0", VA = "0x18057CEF0")]
|
||||
internal static FieldExpression Make(Expression expression, FieldInfo field)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Returns the node type of this <see cref="P:System.Linq.Expressions.MemberExpression.Expression" />.</summary>
|
||||
/// <returns>The <see cref="T:System.Linq.Expressions.ExpressionType" /> that represents this expression.</returns>
|
||||
// Token: 0x170000BA RID: 186
|
||||
// (get) Token: 0x0600049F RID: 1183 RVA: 0x00002E08 File Offset: 0x00001008
|
||||
[Token(Token = "0x170000BA")]
|
||||
public sealed override ExpressionType NodeType
|
||||
{
|
||||
[Token(Token = "0x600049F")]
|
||||
[Address(RVA = "0x55DBE0", Offset = "0x55C9E0", VA = "0x18055DBE0", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return ExpressionType.Add;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x060004A0 RID: 1184 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60004A0")]
|
||||
[Address(RVA = "0x57CE40", Offset = "0x57BC40", VA = "0x18057CE40", Slot = "10")]
|
||||
[ExcludeFromCodeCoverage]
|
||||
internal virtual MemberInfo GetMember()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Dispatches to the specific visit method for this node type. For example, <see cref="T:System.Linq.Expressions.MethodCallExpression" /> calls the <see cref="M:System.Linq.Expressions.ExpressionVisitor.VisitMethodCall(System.Linq.Expressions.MethodCallExpression)" />.</summary>
|
||||
/// <param name="visitor">The visitor to visit this node with.</param>
|
||||
/// <returns>The result of visiting this node.</returns>
|
||||
// Token: 0x060004A1 RID: 1185 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60004A1")]
|
||||
[Address(RVA = "0x57CE10", Offset = "0x57BC10", VA = "0x18057CE10", Slot = "9")]
|
||||
protected internal override Expression Accept(ExpressionVisitor visitor)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression.</summary>
|
||||
/// <param name="expression">The <see cref="P:System.Linq.Expressions.MemberExpression.Expression" /> property of the result.</param>
|
||||
/// <returns>This expression if no children are changed or an expression with the updated children.</returns>
|
||||
// Token: 0x060004A2 RID: 1186 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60004A2")]
|
||||
[Address(RVA = "0x57CF60", Offset = "0x57BD60", VA = "0x18057CF60")]
|
||||
public MemberExpression Update(Expression expression)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user