| ExpressionTreePartialEvaluatorVisitLambdaT(ExpressionT) Method |
This is preliminary documentation and is subject to change.
Namespace: WikiClientLibrary.Cargo.Linq.ExpressionVisitorsAssembly: WikiClientLibrary.Cargo (in WikiClientLibrary.Cargo.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax protected override Expression VisitLambda<T>(
Expression<T> node
)
Protected Overrides Function VisitLambda(Of T) (
node As Expression(Of T)
) As Expression
Dim node As Expression(Of T)
Dim returnValue As Expression
returnValue = Me.VisitLambda(node)
protected:
generic<typename T>
virtual Expression^ VisitLambda(
Expression<T>^ node
) override
abstract VisitLambda :
node : Expression<'T> -> Expression
override VisitLambda :
node : Expression<'T> -> Expression
Parameters
- node ExpressionT
- The expression to visit.
Type Parameters
- T
- The type of the delegate.
Return Value
ExpressionThe modified expression, if it or any subexpression was modified; otherwise, returns the original expression.
See Also