예제 #1
0
 public System.IAsyncResult BeginReceivePoints(Proxy.ServiceReference1.ReceivePointsRequest request, System.AsyncCallback callback, object asyncState)
 {
     object[] _args = new object[1];
     _args[0] = request;
     System.IAsyncResult _result = base.BeginInvoke("ReceivePoints", _args, callback, asyncState);
     return(_result);
 }
예제 #2
0
 public void ReceivePointsAsync(Proxy.ServiceReference1.ReceivePointsRequest request, object userState)
 {
     if ((this.onBeginReceivePointsDelegate == null))
     {
         this.onBeginReceivePointsDelegate = new BeginOperationDelegate(this.OnBeginReceivePoints);
     }
     if ((this.onEndReceivePointsDelegate == null))
     {
         this.onEndReceivePointsDelegate = new EndOperationDelegate(this.OnEndReceivePoints);
     }
     if ((this.onReceivePointsCompletedDelegate == null))
     {
         this.onReceivePointsCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnReceivePointsCompleted);
     }
     base.InvokeAsync(this.onBeginReceivePointsDelegate, new object[] {
         request
     }, this.onEndReceivePointsDelegate, this.onReceivePointsCompletedDelegate, userState);
 }
예제 #3
0
 private System.IAsyncResult OnBeginReceivePoints(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     Proxy.ServiceReference1.ReceivePointsRequest request = ((Proxy.ServiceReference1.ReceivePointsRequest)(inValues[0]));
     return(((Proxy.ServiceReference1.IReceiveData)(this)).BeginReceivePoints(request, callback, asyncState));
 }
예제 #4
0
 public void ReceivePointsAsync(Proxy.ServiceReference1.ReceivePointsRequest request)
 {
     this.ReceivePointsAsync(request, null);
 }
예제 #5
0
 System.IAsyncResult Proxy.ServiceReference1.IReceiveData.BeginReceivePoints(Proxy.ServiceReference1.ReceivePointsRequest request, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginReceivePoints(request, callback, asyncState));
 }