Ejemplo n.º 1
0
 public void SendSystemInfoAsync(ProAzureCommon.SystemMessageExchange ds, object userState)
 {
     if ((this.onBeginSendSystemInfoDelegate == null))
     {
         this.onBeginSendSystemInfoDelegate = new BeginOperationDelegate(this.OnBeginSendSystemInfo);
     }
     if ((this.onEndSendSystemInfoDelegate == null))
     {
         this.onEndSendSystemInfoDelegate = new EndOperationDelegate(this.OnEndSendSystemInfo);
     }
     if ((this.onSendSystemInfoCompletedDelegate == null))
     {
         this.onSendSystemInfoCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSendSystemInfoCompleted);
     }
     base.InvokeAsync(this.onBeginSendSystemInfoDelegate, new object[] {
         ds
     }, this.onEndSendSystemInfoDelegate, this.onSendSystemInfoCompletedDelegate, userState);
 }
Ejemplo n.º 2
0
 private System.IAsyncResult OnBeginSendSystemInfo(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     ProAzureCommon.SystemMessageExchange ds = ((ProAzureCommon.SystemMessageExchange)(inValues[0]));
     return(this.BeginSendSystemInfo(ds, callback, asyncState));
 }
Ejemplo n.º 3
0
 public System.IAsyncResult BeginSendSystemInfo(ProAzureCommon.SystemMessageExchange ds, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginSendSystemInfo(ds, callback, asyncState));
 }
Ejemplo n.º 4
0
 public void SendSystemInfo(ProAzureCommon.SystemMessageExchange ds)
 {
     base.Channel.SendSystemInfo(ds);
 }
Ejemplo n.º 5
0
 public void SendSystemInfoAsync(ProAzureCommon.SystemMessageExchange ds)
 {
     this.SendSystemInfoAsync(ds, null);
 }