Esempio n. 1
0
 public void WhoIsAsync(SelWCFClient.SelServiceReference.MyData myData, object userState)
 {
     if ((this.onBeginWhoIsDelegate == null))
     {
         this.onBeginWhoIsDelegate = new BeginOperationDelegate(this.OnBeginWhoIs);
     }
     if ((this.onEndWhoIsDelegate == null))
     {
         this.onEndWhoIsDelegate = new EndOperationDelegate(this.OnEndWhoIs);
     }
     if ((this.onWhoIsCompletedDelegate == null))
     {
         this.onWhoIsCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnWhoIsCompleted);
     }
     base.InvokeAsync(this.onBeginWhoIsDelegate, new object[] {
         myData
     }, this.onEndWhoIsDelegate, this.onWhoIsCompletedDelegate, userState);
 }
Esempio n. 2
0
 public void WhoIsAsync(SelWCFClient.SelServiceReference.MyData myData)
 {
     this.WhoIsAsync(myData, null);
 }
Esempio n. 3
0
 public System.IAsyncResult BeginWhoIs(SelWCFClient.SelServiceReference.MyData myData, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginWhoIs(myData, callback, asyncState));
 }
Esempio n. 4
0
 private System.IAsyncResult OnBeginWhoIs(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     SelWCFClient.SelServiceReference.MyData myData = ((SelWCFClient.SelServiceReference.MyData)(inValues[0]));
     return(this.BeginWhoIs(myData, callback, asyncState));
 }
Esempio n. 5
0
 public string WhoIs(SelWCFClient.SelServiceReference.MyData myData)
 {
     return(base.Channel.WhoIs(myData));
 }