public void FireCallbackWorkflowEvent(WorkflowMessageEventArgs args) { if (CallbackWorkflowEvent != null) { CallbackWorkflowEvent.Invoke(args); } }
public void FireInvokeWorkflowEvent(WorkflowMessageEventArgs args) { if (InvokeWorkflowEvent != null) { InvokeWorkflowEvent.Invoke(args); } }