Beispiel #1
0
        private System.IAsyncResult OnBeginSubmitLocalErrorLog(object[] inValues, System.AsyncCallback callback, object asyncState)
        {
            OSBIDE.Library.Models.LocalErrorLog errorLog = ((OSBIDE.Library.Models.LocalErrorLog)(inValues[0]));
            string authToken = ((string)(inValues[1]));

            return(this.BeginSubmitLocalErrorLog(errorLog, authToken, callback, asyncState));
        }
Beispiel #2
0
 public void SubmitLocalErrorLogAsync(OSBIDE.Library.Models.LocalErrorLog errorLog, string authToken, object userState)
 {
     if ((this.onBeginSubmitLocalErrorLogDelegate == null))
     {
         this.onBeginSubmitLocalErrorLogDelegate = new BeginOperationDelegate(this.OnBeginSubmitLocalErrorLog);
     }
     if ((this.onEndSubmitLocalErrorLogDelegate == null))
     {
         this.onEndSubmitLocalErrorLogDelegate = new EndOperationDelegate(this.OnEndSubmitLocalErrorLog);
     }
     if ((this.onSubmitLocalErrorLogCompletedDelegate == null))
     {
         this.onSubmitLocalErrorLogCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSubmitLocalErrorLogCompleted);
     }
     base.InvokeAsync(this.onBeginSubmitLocalErrorLogDelegate, new object[] {
         errorLog,
         authToken
     }, this.onEndSubmitLocalErrorLogDelegate, this.onSubmitLocalErrorLogCompletedDelegate, userState);
 }
Beispiel #3
0
 public void SubmitLocalErrorLogAsync(OSBIDE.Library.Models.LocalErrorLog errorLog, string authToken)
 {
     this.SubmitLocalErrorLogAsync(errorLog, authToken, null);
 }
Beispiel #4
0
 public System.IAsyncResult BeginSubmitLocalErrorLog(OSBIDE.Library.Models.LocalErrorLog errorLog, string authToken, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginSubmitLocalErrorLog(errorLog, authToken, callback, asyncState));
 }
Beispiel #5
0
 public int SubmitLocalErrorLog(OSBIDE.Library.Models.LocalErrorLog errorLog, string authToken)
 {
     return(base.Channel.SubmitLocalErrorLog(errorLog, authToken));
 }