Ejemplo n.º 1
0
 /// <summary>
 /// Use this to add a function as an event handler for the OnStageChange event so that it will be called when the business process flow stage changes.
 /// </summary>
 /// <param name="handler">The function will be added to the bottom of the event handler pipeline. The execution context is automatically set to be the first parameter passed to the event handler.
 /// You should use a reference to a named function rather than an anonymous function if you may later want to remove the event handler.</param>
 public abstract void AddOnStageChange(AddRemoveOnChangeHandler handler);
Ejemplo n.º 2
0
 /// <summary>
 /// Use this to remove a function as an event handler for the OnStageSelected event.
 /// </summary>
 /// <param name="handler">If an anonymous function is set using the addOnStageSelected method it cannot be removed using this method.</param>
 public abstract void RemoveOnStageSelected(AddRemoveOnChangeHandler handler);
Ejemplo n.º 3
0
 public void AddOnChange(AddRemoveOnChangeHandler function)
 {
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Use this to add a function as an event handler for the OnStageSelected event so that it will be called when a business process flow stage is selected.
 /// </summary>
 /// <param name="handler">The function will be added to the bottom of the event handler pipeline. The execution context is automatically set to be the first parameter passed to the event handler. See Execution context (client-side reference) for more information.</param>
 public abstract void AddOnStageSelected(AddRemoveOnChangeHandler handler);
Ejemplo n.º 5
0
 /// <summary>
 /// Use this to add a function as an event handler for the OnStageChange event so that it will be called when the business process flow stage changes.
 /// </summary>
 /// <param name="handler">The function will be added to the bottom of the event handler pipeline. The execution context is automatically set to be the first parameter passed to the event handler.
 /// You should use a reference to a named function rather than an anonymous function if you may later want to remove the event handler.</param>
 public abstract void AddOnStageChange(AddRemoveOnChangeHandler handler);
Ejemplo n.º 6
0
 public void AddOnChange(AddRemoveOnChangeHandler function)
 {
 }