using System; using System.Collections.ObjectModel; using System.Diagnostics; using System.Reflection; using System.Runtime.CompilerServices; using Cpp2IlInjected; namespace System.Linq.Expressions { /// Represents a control expression that handles multiple selections by passing control to . // Token: 0x020000CE RID: 206 [Token(Token = "0x20000CE")] [DebuggerTypeProxy(typeof(Expression.SwitchExpressionProxy))] public sealed class SwitchExpression : Expression { /// Gets the test for the switch. /// The object representing the test for the switch. // 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; } } /// Gets the collection of objects for the switch. /// The collection of objects. // Token: 0x1700013A RID: 314 // (get) Token: 0x06000610 RID: 1552 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700013A")] public ReadOnlyCollection Cases { [Token(Token = "0x6000610")] [Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")] [CompilerGenerated] get { return null; } } /// Gets the test for the switch. /// The object representing the test for the switch. // 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; } } /// Gets the equality comparison method, if any. /// The object representing the equality comparison method. // 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; } } } }