m
This commit is contained in:
@@ -0,0 +1,80 @@
|
||||
using System;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Diagnostics;
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Linq.Expressions
|
||||
{
|
||||
/// <summary>Represents a control expression that handles multiple selections by passing control to <see cref="T:System.Linq.Expressions.SwitchCase" />.</summary>
|
||||
// Token: 0x020000CE RID: 206
|
||||
[Token(Token = "0x20000CE")]
|
||||
[DebuggerTypeProxy(typeof(Expression.SwitchExpressionProxy))]
|
||||
public sealed class SwitchExpression : Expression
|
||||
{
|
||||
/// <summary>Gets the test for the switch.</summary>
|
||||
/// <returns>The <see cref="T:System.Linq.Expressions.Expression" /> object representing the test for the switch.</returns>
|
||||
// Token: 0x17000139 RID: 313
|
||||
// (get) Token: 0x0600060F RID: 1551 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000139")]
|
||||
public Expression SwitchValue
|
||||
{
|
||||
[Token(Token = "0x600060F")]
|
||||
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the collection of <see cref="T:System.Linq.Expressions.SwitchCase" /> objects for the switch.</summary>
|
||||
/// <returns>The collection of <see cref="T:System.Linq.Expressions.SwitchCase" /> objects.</returns>
|
||||
// Token: 0x1700013A RID: 314
|
||||
// (get) Token: 0x06000610 RID: 1552 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700013A")]
|
||||
public ReadOnlyCollection<SwitchCase> Cases
|
||||
{
|
||||
[Token(Token = "0x6000610")]
|
||||
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the test for the switch.</summary>
|
||||
/// <returns>The <see cref="T:System.Linq.Expressions.Expression" /> object representing the test for the switch.</returns>
|
||||
// Token: 0x1700013B RID: 315
|
||||
// (get) Token: 0x06000611 RID: 1553 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700013B")]
|
||||
public Expression DefaultBody
|
||||
{
|
||||
[Token(Token = "0x6000611")]
|
||||
[Address(RVA = "0x4157C0", Offset = "0x4147C0", VA = "0x1804157C0")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the equality comparison method, if any.</summary>
|
||||
/// <returns>The <see cref="T:System.Reflection.MethodInfo" /> object representing the equality comparison method.</returns>
|
||||
// Token: 0x1700013C RID: 316
|
||||
// (get) Token: 0x06000612 RID: 1554 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700013C")]
|
||||
public MethodInfo Comparison
|
||||
{
|
||||
[Token(Token = "0x6000612")]
|
||||
[Address(RVA = "0x4157D0", Offset = "0x4147D0", VA = "0x1804157D0")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user