/// <summary> /// Sets the callback for executing a method of an API class. /// </summary> public static void SetCallbackExecuteMethod(ScriptProcessor processor, DExecuteMethod callback) { processor.Context.AddCallback(CallbackType.ExecuteMethod, callback); }
/// <summary> /// Sets the callback for executing a method of an API class. /// </summary> public void SetCallbackExecuteMethod(DExecuteMethod callback) { AddCallback(CallbackType.ExecuteMethod, callback); }