Exemple #1
0
 public void HandleBIExceptionAsync(CrawlDaddy.Core.BILoggerService.BIException e, object userState)
 {
     if ((this.onBeginHandleBIExceptionDelegate == null))
     {
         this.onBeginHandleBIExceptionDelegate = new BeginOperationDelegate(this.OnBeginHandleBIException);
     }
     if ((this.onEndHandleBIExceptionDelegate == null))
     {
         this.onEndHandleBIExceptionDelegate = new EndOperationDelegate(this.OnEndHandleBIException);
     }
     if ((this.onHandleBIExceptionCompletedDelegate == null))
     {
         this.onHandleBIExceptionCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnHandleBIExceptionCompleted);
     }
     base.InvokeAsync(this.onBeginHandleBIExceptionDelegate, new object[] {
         e
     }, this.onEndHandleBIExceptionDelegate, this.onHandleBIExceptionCompletedDelegate, userState);
 }
Exemple #2
0
 public void HandleBIExceptionAsync(CrawlDaddy.Core.BILoggerService.BIException e)
 {
     this.HandleBIExceptionAsync(e, null);
 }
Exemple #3
0
 public System.IAsyncResult BeginHandleBIException(CrawlDaddy.Core.BILoggerService.BIException e, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginHandleBIException(e, callback, asyncState));
 }
Exemple #4
0
 private System.IAsyncResult OnBeginHandleBIException(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     CrawlDaddy.Core.BILoggerService.BIException e = ((CrawlDaddy.Core.BILoggerService.BIException)(inValues[0]));
     return(this.BeginHandleBIException(e, callback, asyncState));
 }
Exemple #5
0
 public void HandleBIException(CrawlDaddy.Core.BILoggerService.BIException e)
 {
     base.Channel.HandleBIException(e);
 }