Expression.Call Method
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Include Protected Members
Include Inherited Members
Include Silverlight Members
Include Silverlight for Windows Phone Members
Include XNA Framework Members
Creates a MethodCallExpression.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
Overload List
Name | Description | |
---|---|---|
Call(Expression, MethodInfo) | Creates a MethodCallExpression that represents a call to an instance method that takes no arguments. | |
Call(MethodInfo, IEnumerable<Expression>) | Creates a MethodCallExpression that represents a call to a static (Shared in Visual Basic) method. | |
Call(MethodInfo, Expression) | Creates a MethodCallExpression that represents a call to a static (Shared in Visual Basic) method that takes one argument. | |
Call(MethodInfo, array<Expression[]) | Creates a MethodCallExpression that represents a call to a static (Shared in Visual Basic) method that has arguments. | |
Call(Expression, MethodInfo, IEnumerable<Expression>) | Creates a MethodCallExpression that represents a call to a method that takes arguments. | |
Call(Expression, MethodInfo, array<Expression[]) | Creates a MethodCallExpression that represents a call to a method that takes arguments. | |
Call(MethodInfo, Expression, Expression) | Creates a MethodCallExpression that represents a call to an static method that takes two arguments. | |
Call(Expression, MethodInfo, Expression, Expression) | Creates a MethodCallExpression that represents a call to a static method that takes two arguments. | |
Call(Expression, String, array<Type[], array<Expression[]) | Creates a MethodCallExpression that represents a call to an instance method by calling the appropriate factory method. | |
Call(MethodInfo, Expression, Expression, Expression) | Creates a MethodCallExpression that represents a call to a static method that takes three arguments. | |
Call(Type, String, array<Type[], array<Expression[]) | Creates a MethodCallExpression that represents a call to a static (Shared in Visual Basic) method by calling the appropriate factory method. | |
Call(Expression, MethodInfo, Expression, Expression, Expression) | Creates a MethodCallExpression that represents a call to a method that takes no arguments. | |
Call(MethodInfo, Expression, Expression, Expression, Expression) | Creates a MethodCallExpression that represents a call to a static method that takes four arguments. | |
Call(MethodInfo, Expression, Expression, Expression, Expression, Expression) | Creates a MethodCallExpression that represents a call to a static method that takes five arguments. |
Top