[]
Represents an expression with a function applied to a list of parameters as the expression.
public class FunctionExpression : Expression
Public Class FunctionExpression
Inherits Expression
Name | Description |
---|---|
FunctionExpression(FunctionInfo, Expression[]) | Creates a new expression representing a function applied to a list of parameters. |
FunctionExpression(string, Expression[]) | Creates a new expression representing a function applied to a list of parameters. |
Name | Description |
---|---|
ArgCount | Gets the number of parameters being passed to the function. |
Function | Gets the implementation (dynamic or static function binding) of the function. |
FunctionName | Gets the name of function. |
Name | Description |
---|---|
GetArg(int) | Returns the specified parameter being passed to the function. |