コード例 #1
0
 public System.IAsyncResult BeginReceivePoint(Proxy.ServiceReference1.ReceivePointRequest request, System.AsyncCallback callback, object asyncState)
 {
     object[] _args = new object[1];
     _args[0] = request;
     System.IAsyncResult _result = base.BeginInvoke("ReceivePoint", _args, callback, asyncState);
     return(_result);
 }
コード例 #2
0
 public void ReceivePointAsync(Proxy.ServiceReference1.ReceivePointRequest request, object userState)
 {
     if ((this.onBeginReceivePointDelegate == null))
     {
         this.onBeginReceivePointDelegate = new BeginOperationDelegate(this.OnBeginReceivePoint);
     }
     if ((this.onEndReceivePointDelegate == null))
     {
         this.onEndReceivePointDelegate = new EndOperationDelegate(this.OnEndReceivePoint);
     }
     if ((this.onReceivePointCompletedDelegate == null))
     {
         this.onReceivePointCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnReceivePointCompleted);
     }
     base.InvokeAsync(this.onBeginReceivePointDelegate, new object[] {
         request
     }, this.onEndReceivePointDelegate, this.onReceivePointCompletedDelegate, userState);
 }
コード例 #3
0
 private System.IAsyncResult OnBeginReceivePoint(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     Proxy.ServiceReference1.ReceivePointRequest request = ((Proxy.ServiceReference1.ReceivePointRequest)(inValues[0]));
     return(((Proxy.ServiceReference1.IReceiveData)(this)).BeginReceivePoint(request, callback, asyncState));
 }
コード例 #4
0
 public void ReceivePointAsync(Proxy.ServiceReference1.ReceivePointRequest request)
 {
     this.ReceivePointAsync(request, null);
 }
コード例 #5
0
 System.IAsyncResult Proxy.ServiceReference1.IReceiveData.BeginReceivePoint(Proxy.ServiceReference1.ReceivePointRequest request, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginReceivePoint(request, callback, asyncState));
 }