private void OnStarted(KipptEventArgs e) { if (Started != null) { Started(this, e); } }
private void OnCompleted(KipptEventArgs e) { if (Completed != null) { Completed(this, e); } }
/// <summary> /// Occurs when a query has successfully been executed. /// </summary> /// /// <param name="e">Event arguments.</param> public static void OnOperationExecuted(KipptEventArgs e) { if (OperationExecuted != null) OperationExecuted(null, e); }