Expression.Call Method (MethodInfo, IEnumerable<Expression>)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Creates a MethodCallExpression that represents a call to a static (Shared in Visual Basic) method.
Namespace: System.Linq.Expressions
Assembly: System.Core (in System.Core.dll)
Syntax
'Declaration
Public Shared Function Call ( _
method As MethodInfo, _
arguments As IEnumerable(Of Expression) _
) As MethodCallExpression
public static MethodCallExpression Call(
MethodInfo method,
IEnumerable<Expression> arguments
)
Parameters
- method
Type: System.Reflection.MethodInfo
The MethodInfo that represents the target method.
- arguments
Type: System.Collections.Generic.IEnumerable<Expression>
A collection of Expression that represents the call arguments.
Return Value
Type: System.Linq.Expressions.MethodCallExpression
A MethodCallExpression that has the NodeType property equal to Call and the Object and Method properties set to the specified values.
Version Information
Silverlight
Supported in: 5, 4
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.