Example #1
0
 public void EchoOnExitAsync(HelloWorldR2ErrorHandle.EchoService.EchoOnExitRequest request, object userState)
 {
     if ((this.onBeginEchoOnExitDelegate == null))
     {
         this.onBeginEchoOnExitDelegate = new BeginOperationDelegate(this.OnBeginEchoOnExit);
     }
     if ((this.onEndEchoOnExitDelegate == null))
     {
         this.onEndEchoOnExitDelegate = new EndOperationDelegate(this.OnEndEchoOnExit);
     }
     if ((this.onEchoOnExitCompletedDelegate == null))
     {
         this.onEchoOnExitCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnEchoOnExitCompleted);
     }
     base.InvokeAsync(this.onBeginEchoOnExitDelegate, new object[] {
         request
     }, this.onEndEchoOnExitDelegate, this.onEchoOnExitCompletedDelegate, userState);
 }
Example #2
0
 public void EchoOnExitAsync(HelloWorldR2ErrorHandle.EchoService.EchoOnExitRequest request)
 {
     this.EchoOnExitAsync(request, null);
 }
Example #3
0
 public System.IAsyncResult BeginEchoOnExit(HelloWorldR2ErrorHandle.EchoService.EchoOnExitRequest request, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginEchoOnExit(request, callback, asyncState));
 }
Example #4
0
 private System.IAsyncResult OnBeginEchoOnExit(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     HelloWorldR2ErrorHandle.EchoService.EchoOnExitRequest request = ((HelloWorldR2ErrorHandle.EchoService.EchoOnExitRequest)(inValues[0]));
     return(this.BeginEchoOnExit(request, callback, asyncState));
 }
Example #5
0
 public HelloWorldR2ErrorHandle.EchoService.EchoOnExitResponse EchoOnExit(HelloWorldR2ErrorHandle.EchoService.EchoOnExitRequest request)
 {
     return(base.Channel.EchoOnExit(request));
 }