Ejemplo n.º 1
0
 public void QueryPoemAsync(Maxz.PoemSystem.Tools.PoemApiService.QueryPoemRequest request, object userState)
 {
     if ((this.onBeginQueryPoemDelegate == null))
     {
         this.onBeginQueryPoemDelegate = new BeginOperationDelegate(this.OnBeginQueryPoem);
     }
     if ((this.onEndQueryPoemDelegate == null))
     {
         this.onEndQueryPoemDelegate = new EndOperationDelegate(this.OnEndQueryPoem);
     }
     if ((this.onQueryPoemCompletedDelegate == null))
     {
         this.onQueryPoemCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnQueryPoemCompleted);
     }
     base.InvokeAsync(this.onBeginQueryPoemDelegate, new object[] {
         request
     }, this.onEndQueryPoemDelegate, this.onQueryPoemCompletedDelegate, userState);
 }
Ejemplo n.º 2
0
 public void QueryPoemAsync(Maxz.PoemSystem.Tools.PoemApiService.QueryPoemRequest request)
 {
     this.QueryPoemAsync(request, null);
 }
Ejemplo n.º 3
0
 public System.IAsyncResult BeginQueryPoem(Maxz.PoemSystem.Tools.PoemApiService.QueryPoemRequest request, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginQueryPoem(request, callback, asyncState));
 }
Ejemplo n.º 4
0
 private System.IAsyncResult OnBeginQueryPoem(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     Maxz.PoemSystem.Tools.PoemApiService.QueryPoemRequest request = ((Maxz.PoemSystem.Tools.PoemApiService.QueryPoemRequest)(inValues[0]));
     return(this.BeginQueryPoem(request, callback, asyncState));
 }
Ejemplo n.º 5
0
 public Maxz.PoemSystem.Tools.PoemApiService.QueryPoemResponse QueryPoem(Maxz.PoemSystem.Tools.PoemApiService.QueryPoemRequest request)
 {
     return(base.Channel.QueryPoem(request));
 }