Contains the event data and state of a request.
Inheritance: System.EventArgs
Exemple #1
0
 private void OnStarted(KipptEventArgs e)
 {
     if (Started != null)
     {
         Started(this, e);
     }
 }
Exemple #2
0
 private void OnCompleted(KipptEventArgs e)
 {
     if (Completed != null)
     {
         Completed(this, e);
     }
 }
Exemple #3
0
 /// <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);
 }