Files
27Aug2021-Cpp2IL-Dump/System.Core/System/Linq/Expressions/MemberExpression.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

117 lines
4.5 KiB
C#

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: 0x020000AD RID: 173
[Token(Token = "0x20000AD")]
[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: 0x170000D8 RID: 216
// (get) Token: 0x06000526 RID: 1318 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000D8")]
public MemberInfo Member
{
[Token(Token = "0x6000526")]
[Address(RVA = "0x85CED0", Offset = "0x85BED0", VA = "0x18085CED0")]
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: 0x170000D9 RID: 217
// (get) Token: 0x06000527 RID: 1319 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000D9")]
public Expression Expression
{
[Token(Token = "0x6000527")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
[CompilerGenerated]
get
{
return null;
}
}
// Token: 0x06000528 RID: 1320 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000528")]
[Address(RVA = "0xE61B30", Offset = "0xE60B30", VA = "0x180E61B30")]
internal MemberExpression(Expression expression)
{
}
// Token: 0x06000529 RID: 1321 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000529")]
[Address(RVA = "0xE619C0", Offset = "0xE609C0", VA = "0x180E619C0")]
internal static PropertyExpression Make(Expression expression, PropertyInfo property)
{
return null;
}
// Token: 0x0600052A RID: 1322 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600052A")]
[Address(RVA = "0xE61A30", Offset = "0xE60A30", VA = "0x180E61A30")]
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: 0x170000DA RID: 218
// (get) Token: 0x0600052B RID: 1323 RVA: 0x000030D8 File Offset: 0x000012D8
[Token(Token = "0x170000DA")]
public sealed override ExpressionType NodeType
{
[Token(Token = "0x600052B")]
[Address(RVA = "0xC458C0", Offset = "0xC448C0", VA = "0x180C458C0", Slot = "4")]
get
{
return ExpressionType.Add;
}
}
// Token: 0x0600052C RID: 1324 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600052C")]
[Address(RVA = "0xE61980", Offset = "0xE60980", VA = "0x180E61980", 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: 0x0600052D RID: 1325 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600052D")]
[Address(RVA = "0xE61950", Offset = "0xE60950", VA = "0x180E61950", 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: 0x0600052E RID: 1326 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600052E")]
[Address(RVA = "0xE61AA0", Offset = "0xE60AA0", VA = "0x180E61AA0")]
public MemberExpression Update(Expression expression)
{
return null;
}
}
}