Evaluate Method
Overloads
Evaluate(String) |
Evaluates an expression and returns the result as a string. ExampleThe client sends:
The engine returns:
|
Evaluate(String)
Evaluates an expression and returns the result as a string.
Example
The client sends:
{
"handle": 1,
"method": "Evaluate",
"params": {
"qExpression": "Sum(Holes)"
},
"id": 6,
"jsonrpc": "2.0"
}
The engine returns:
{
"jsonrpc": "2.0",
"id": 6,
"result": {
"qReturn": "361716"
}
}
Declaration
string Evaluate([QixName("qExpression")] string expression)
Parameters
Type | Name | Description |
---|---|---|
System.String | expression |
Expression to evaluate. |
Returns
Type | Description |
---|---|
System.String |