XSpect.Yacq.Expressions.YacqExpression.Contextful C# (CSharp) Method

Contextful() public static method

Creates a ContextfulExpression that represents the expression which is evaluated on special context.
public static Contextful ( Expression expression, ContextType contextType ) : ContextfulExpression
expression System.Linq.Expressions.Expression The expression to evaluate on special context.
contextType ContextType The type of evaluating context.
return ContextfulExpression
        public static ContextfulExpression Contextful(Expression expression, ContextType contextType)
        {
            return Contextful(null, expression, contextType);
        }
    }

Same methods

YacqExpression::Contextful ( SymbolTable symbols, Expression expression, ContextType contextType ) : ContextfulExpression