Expression.Call Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
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.
| 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, 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, 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, Type[], 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, Type[], 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. |
Show: