Exemplo n.º 1
0
 private object[] OnEndGetDataUsingDataContract(System.IAsyncResult result)
 {
     WebApplication1.Servicetest.CompositeType retVal = this.EndGetDataUsingDataContract(result);
     return(new object[] {
         retVal
     });
 }
Exemplo n.º 2
0
 public void GetDataUsingDataContractAsync(WebApplication1.Servicetest.CompositeType composite, object userState)
 {
     if ((this.onBeginGetDataUsingDataContractDelegate == null))
     {
         this.onBeginGetDataUsingDataContractDelegate = new BeginOperationDelegate(this.OnBeginGetDataUsingDataContract);
     }
     if ((this.onEndGetDataUsingDataContractDelegate == null))
     {
         this.onEndGetDataUsingDataContractDelegate = new EndOperationDelegate(this.OnEndGetDataUsingDataContract);
     }
     if ((this.onGetDataUsingDataContractCompletedDelegate == null))
     {
         this.onGetDataUsingDataContractCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetDataUsingDataContractCompleted);
     }
     base.InvokeAsync(this.onBeginGetDataUsingDataContractDelegate, new object[] {
         composite
     }, this.onEndGetDataUsingDataContractDelegate, this.onGetDataUsingDataContractCompletedDelegate, userState);
 }
Exemplo n.º 3
0
 public void GetDataUsingDataContractAsync(WebApplication1.Servicetest.CompositeType composite)
 {
     this.GetDataUsingDataContractAsync(composite, null);
 }
Exemplo n.º 4
0
 private System.IAsyncResult OnBeginGetDataUsingDataContract(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     WebApplication1.Servicetest.CompositeType composite = ((WebApplication1.Servicetest.CompositeType)(inValues[0]));
     return(this.BeginGetDataUsingDataContract(composite, callback, asyncState));
 }
Exemplo n.º 5
0
 public System.IAsyncResult BeginGetDataUsingDataContract(WebApplication1.Servicetest.CompositeType composite, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginGetDataUsingDataContract(composite, callback, asyncState));
 }
Exemplo n.º 6
0
 public WebApplication1.Servicetest.CompositeType GetDataUsingDataContract(WebApplication1.Servicetest.CompositeType composite)
 {
     return(base.Channel.GetDataUsingDataContract(composite));
 }