public sealed override FunctionResult Execute(object[] args, ExecuteContext context)
 {
     Debug.Assert(args.Length == 0, $"the function '{Name}' should has no argument");
     return(OnExecute(context));
 }
 protected abstract FunctionResult OnExecute(ExecuteContext context);
Example #3
0
 protected override FunctionResult OnExecute(List <ValueInfo> args, ExecuteContext context)
 {
     throw new NotImplementedException();
 }
Example #4
0
 public abstract FunctionResult Execute(object[] args, ExecuteContext context);
Example #5
0
 protected override FunctionResult OnExecute(ExecuteContext context)
 {
     throw new NotImplementedException();
 }