Show / Hide Table of Contents

Interface IExpressionWithEnvironment

Interface for the representation of an expression bound by an environment.

Namespace: System.Linq.CompilerServices
Assembly: Nuqleon.Linq.CompilerServices.dll
Syntax
public interface IExpressionWithEnvironment

Properties

Bindings

Gets the environment containing bindings of parameters to values in the expression.

Declaration
IReadOnlyList<Binding> Bindings { get; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyList<Binding>

Expression

Gets the expression bound to the environment.

Declaration
Expression Expression { get; }
Property Value
Type Description
System.Linq.Expressions.Expression
In This Article
Back to top Generated by DocFX