Expression::Call Method

 
Namespace:   System.Linq.Expressions
Assembly:  System.Core (in System.Core.dll)

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticCall(Expression^, MethodInfo^)

Creates a MethodCallExpression that represents a call to a method that takes no arguments.

System_CAPS_pubmethodSystem_CAPS_staticCall(Expression^, MethodInfo^, Expression^, Expression^)

Creates a MethodCallExpression that represents a call to a method that takes two arguments.

System_CAPS_pubmethodSystem_CAPS_staticCall(Expression^, MethodInfo^, Expression^, Expression^, Expression^)

Creates a MethodCallExpression that represents a call to a method that takes three arguments.

System_CAPS_pubmethodSystem_CAPS_staticCall(Expression^, MethodInfo^, array<Expression^>^)

Creates a MethodCallExpression that represents a call to a method that takes arguments.

System_CAPS_pubmethodSystem_CAPS_staticCall(Expression^, MethodInfo^, IEnumerable<Expression^>^)

Creates a MethodCallExpression that represents a call to a method that takes arguments.

System_CAPS_pubmethodSystem_CAPS_staticCall(Expression^, String^, array<Type^>^, array<Expression^>^)

Creates a MethodCallExpression that represents a call to a method by calling the appropriate factory method.

System_CAPS_pubmethodSystem_CAPS_staticCall(MethodInfo^, Expression^)

Creates a MethodCallExpression that represents a call to a static (Shared in Visual Basic) method that takes one argument.

System_CAPS_pubmethodSystem_CAPS_staticCall(MethodInfo^, Expression^, Expression^)

Creates a MethodCallExpression that represents a call to a static method that takes two arguments.

System_CAPS_pubmethodSystem_CAPS_staticCall(MethodInfo^, Expression^, Expression^, Expression^)

Creates a MethodCallExpression that represents a call to a static method that takes three arguments.

System_CAPS_pubmethodSystem_CAPS_staticCall(MethodInfo^, Expression^, Expression^, Expression^, Expression^)

Creates a MethodCallExpression that represents a call to a static method that takes four arguments.

System_CAPS_pubmethodSystem_CAPS_staticCall(MethodInfo^, Expression^, Expression^, Expression^, Expression^, Expression^)

Creates a MethodCallExpression that represents a call to a static method that takes five arguments.

System_CAPS_pubmethodSystem_CAPS_staticCall(MethodInfo^, array<Expression^>^)

Creates a MethodCallExpression that represents a call to a static (Shared in Visual Basic) method that has arguments.

System_CAPS_pubmethodSystem_CAPS_staticCall(MethodInfo^, IEnumerable<Expression^>^)

Creates a MethodCallExpression that represents a call to a static (Shared in Visual Basic) method.

System_CAPS_pubmethodSystem_CAPS_staticCall(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.

Return to top
Show: