コード例 #1
0
ファイル: Reference.cs プロジェクト: nitware/mdia
 public System.IAsyncResult BeginGetDataUsingDataContract(Mdia.Mobile.MdiaService.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);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: nitware/mdia
 private object[] OnEndGetDataUsingDataContract(System.IAsyncResult result)
 {
     Mdia.Mobile.MdiaService.CompositeType retVal = ((Mdia.Mobile.MdiaService.IService)(this)).EndGetDataUsingDataContract(result);
     return(new object[] {
         retVal
     });
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: nitware/mdia
 public void GetDataUsingDataContractAsync(Mdia.Mobile.MdiaService.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);
 }
コード例 #4
0
ファイル: Reference.cs プロジェクト: nitware/mdia
 public Mdia.Mobile.MdiaService.CompositeType EndGetDataUsingDataContract(System.IAsyncResult result)
 {
     object[] _args = new object[0];
     Mdia.Mobile.MdiaService.CompositeType _result = ((Mdia.Mobile.MdiaService.CompositeType)(base.EndInvoke("GetDataUsingDataContract", _args, result)));
     return(_result);
 }
コード例 #5
0
ファイル: Reference.cs プロジェクト: nitware/mdia
 public void GetDataUsingDataContractAsync(Mdia.Mobile.MdiaService.CompositeType composite)
 {
     this.GetDataUsingDataContractAsync(composite, null);
 }
コード例 #6
0
ファイル: Reference.cs プロジェクト: nitware/mdia
 private System.IAsyncResult OnBeginGetDataUsingDataContract(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     Mdia.Mobile.MdiaService.CompositeType composite = ((Mdia.Mobile.MdiaService.CompositeType)(inValues[0]));
     return(((Mdia.Mobile.MdiaService.IService)(this)).BeginGetDataUsingDataContract(composite, callback, asyncState));
 }
コード例 #7
0
ファイル: Reference.cs プロジェクト: nitware/mdia
 System.IAsyncResult Mdia.Mobile.MdiaService.IService.BeginGetDataUsingDataContract(Mdia.Mobile.MdiaService.CompositeType composite, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginGetDataUsingDataContract(composite, callback, asyncState));
 }