public System.IAsyncResult BeginReceivePoint(System.TupleOfdoubledoubledouble data, System.AsyncCallback callback, object asyncState)
 {
     object[] _args = new object[1];
     _args[0] = data;
     System.IAsyncResult _result = base.BeginInvoke("ReceivePoint", _args, callback, asyncState);
     return _result;
 }
 public void ReceivePointAsync(System.TupleOfdoubledoubledouble data, 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[] {
                 data}, this.onEndReceivePointDelegate, this.onReceivePointCompletedDelegate, userState);
 }
 private System.IAsyncResult OnBeginReceivePoint(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     System.TupleOfdoubledoubledouble data = ((System.TupleOfdoubledoubledouble)(inValues[0]));
     return ((IReceiveData)(this)).BeginReceivePoint(data, callback, asyncState);
 }
 public void ReceivePointAsync(System.TupleOfdoubledoubledouble data)
 {
     this.ReceivePointAsync(data, null);
 }
 System.IAsyncResult IReceiveData.BeginReceivePoint(System.TupleOfdoubledoubledouble data, System.AsyncCallback callback, object asyncState)
 {
     return base.Channel.BeginReceivePoint(data, callback, asyncState);
 }