.NET Framework Class Library
ExpressionVisitor.VisitMethodCall Method
Visits the children of the MethodCallExpression.
Assembly: System.Core (in System.Core.dll)
Syntax
Visual Basic
Protected Friend Overridable Function VisitMethodCall ( _ node As MethodCallExpression _ ) As Expression
C#
protected internal virtual Expression VisitMethodCall( MethodCallExpression node )
Visual C++
protected public: virtual Expression^ VisitMethodCall( MethodCallExpression^ node )
F#
abstract VisitMethodCall : node:MethodCallExpression -> Expression override VisitMethodCall : node:MethodCallExpression -> Expression
Parameters
- node
- Type: System.Linq.Expressions.MethodCallExpression
The expression to visit.
Return Value
Type: System.Linq.Expressions.ExpressionThe modified expression, if it or any subexpression was modified; otherwise, returns the original expression.
Version Information
.NET Framework
Supported in: 4.NET Framework Client Profile
Supported in: 4Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also