Contains the event data and state of a request.
Inheritance: System.EventArgs
コード例 #1
0
ファイル: KipptClient.cs プロジェクト: Haythem/Kippt.NET
 private void OnStarted(KipptEventArgs e)
 {
     if (Started != null)
     {
         Started(this, e);
     }
 }
コード例 #2
0
ファイル: KipptClient.cs プロジェクト: Haythem/Kippt.NET
 private void OnCompleted(KipptEventArgs e)
 {
     if (Completed != null)
     {
         Completed(this, e);
     }
 }
コード例 #3
0
ファイル: KipptClient.cs プロジェクト: cubski/Kippt.NET
 /// <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);
 }