Beispiel #1
0
 public EvaluateResult Evaluate(string text, IDictionary<string, object> args = null, QueryOptions options = null)
 {
     // TODO: overload that returns the type
     EvaluateResult result = new EvaluateResult();
     AdHocCall
     (
         (ao, ct) =>
         {
             result = InternalExecute(text, args, ao, ct);
         },
         options
     );
     return result;
 }