Beispiel #1
0
 public void EchoDelayAsync(HelloWorldR2ErrorHandle.EchoService.EchoDelayRequest request, object userState)
 {
     if ((this.onBeginEchoDelayDelegate == null))
     {
         this.onBeginEchoDelayDelegate = new BeginOperationDelegate(this.OnBeginEchoDelay);
     }
     if ((this.onEndEchoDelayDelegate == null))
     {
         this.onEndEchoDelayDelegate = new EndOperationDelegate(this.OnEndEchoDelay);
     }
     if ((this.onEchoDelayCompletedDelegate == null))
     {
         this.onEchoDelayCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnEchoDelayCompleted);
     }
     base.InvokeAsync(this.onBeginEchoDelayDelegate, new object[] {
         request
     }, this.onEndEchoDelayDelegate, this.onEchoDelayCompletedDelegate, userState);
 }
Beispiel #2
0
 public void EchoDelayAsync(HelloWorldR2ErrorHandle.EchoService.EchoDelayRequest request)
 {
     this.EchoDelayAsync(request, null);
 }
Beispiel #3
0
 public System.IAsyncResult BeginEchoDelay(HelloWorldR2ErrorHandle.EchoService.EchoDelayRequest request, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginEchoDelay(request, callback, asyncState));
 }
Beispiel #4
0
 private System.IAsyncResult OnBeginEchoDelay(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     HelloWorldR2ErrorHandle.EchoService.EchoDelayRequest request = ((HelloWorldR2ErrorHandle.EchoService.EchoDelayRequest)(inValues[0]));
     return(this.BeginEchoDelay(request, callback, asyncState));
 }
Beispiel #5
0
 public HelloWorldR2ErrorHandle.EchoService.EchoDelayResponse EchoDelay(HelloWorldR2ErrorHandle.EchoService.EchoDelayRequest request)
 {
     return(base.Channel.EchoDelay(request));
 }