Example #1
0
 /// <remarks/>
 public void EchoMtAsync(EchoMtRequest req) {
     this.EchoMtAsync(req, null);
 }
Example #2
0
 /// <remarks/>
 public void EchoMtAsync(EchoMtRequest req, object userState) {
     if ((this.EchoMtOperationCompleted == null)) {
         this.EchoMtOperationCompleted = new System.Threading.SendOrPostCallback(this.OnEchoMtOperationCompleted);
     }
     this.InvokeAsync("EchoMt", new object[] {
                 req}, this.EchoMtOperationCompleted, userState);
 }
Example #3
0
 public EchoMtResponse EchoMt(EchoMtRequest req) {
     object[] results = this.Invoke("EchoMt", new object[] {
                 req});
     return ((EchoMtResponse)(results[0]));
 }