Ejemplo n.º 1
0
 public System.IAsyncResult BeginGetDataUsingDataContract(SeeYouRunner.WindowsPhoneServiceProducao.CompositeType composite, System.AsyncCallback callback, object asyncState)
 {
     object[] _args = new object[1];
     _args[0] = composite;
     System.IAsyncResult _result = base.BeginInvoke("GetDataUsingDataContract", _args, callback, asyncState);
     return(_result);
 }
Ejemplo n.º 2
0
 private object[] OnEndGetDataUsingDataContract(System.IAsyncResult result)
 {
     SeeYouRunner.WindowsPhoneServiceProducao.CompositeType retVal = ((SeeYouRunner.WindowsPhoneServiceProducao.IWindowsPhoneService)(this)).EndGetDataUsingDataContract(result);
     return(new object[] {
         retVal
     });
 }
Ejemplo n.º 3
0
 public void GetDataUsingDataContractAsync(SeeYouRunner.WindowsPhoneServiceProducao.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);
 }
Ejemplo n.º 4
0
 public SeeYouRunner.WindowsPhoneServiceProducao.CompositeType EndGetDataUsingDataContract(System.IAsyncResult result)
 {
     object[] _args = new object[0];
     SeeYouRunner.WindowsPhoneServiceProducao.CompositeType _result = ((SeeYouRunner.WindowsPhoneServiceProducao.CompositeType)(base.EndInvoke("GetDataUsingDataContract", _args, result)));
     return(_result);
 }
Ejemplo n.º 5
0
 public void GetDataUsingDataContractAsync(SeeYouRunner.WindowsPhoneServiceProducao.CompositeType composite)
 {
     this.GetDataUsingDataContractAsync(composite, null);
 }
Ejemplo n.º 6
0
 private System.IAsyncResult OnBeginGetDataUsingDataContract(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     SeeYouRunner.WindowsPhoneServiceProducao.CompositeType composite = ((SeeYouRunner.WindowsPhoneServiceProducao.CompositeType)(inValues[0]));
     return(((SeeYouRunner.WindowsPhoneServiceProducao.IWindowsPhoneService)(this)).BeginGetDataUsingDataContract(composite, callback, asyncState));
 }
Ejemplo n.º 7
0
 System.IAsyncResult SeeYouRunner.WindowsPhoneServiceProducao.IWindowsPhoneService.BeginGetDataUsingDataContract(SeeYouRunner.WindowsPhoneServiceProducao.CompositeType composite, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginGetDataUsingDataContract(composite, callback, asyncState));
 }