예제 #1
0
 public System.IAsyncResult BeginGetMapGoogle(www.tannguyen.com.types.MapImageRequest request, System.AsyncCallback callback, object asyncState)
 {
     object[] _args = new object[1];
     _args[0] = request;
     System.IAsyncResult _result = base.BeginInvoke("GetMapGoogle", _args, callback, asyncState);
     return(_result);
 }
예제 #2
0
 public void GetMapGoogleAsync(www.tannguyen.com.types.MapImageRequest request, object userState)
 {
     if ((this.onBeginGetMapGoogleDelegate == null))
     {
         this.onBeginGetMapGoogleDelegate = new BeginOperationDelegate(this.OnBeginGetMapGoogle);
     }
     if ((this.onEndGetMapGoogleDelegate == null))
     {
         this.onEndGetMapGoogleDelegate = new EndOperationDelegate(this.OnEndGetMapGoogle);
     }
     if ((this.onGetMapGoogleCompletedDelegate == null))
     {
         this.onGetMapGoogleCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetMapGoogleCompleted);
     }
     base.InvokeAsync(this.onBeginGetMapGoogleDelegate, new object[] {
         request
     }, this.onEndGetMapGoogleDelegate, this.onGetMapGoogleCompletedDelegate, userState);
 }
예제 #3
0
 public void GetMapGoogleAsync(www.tannguyen.com.types.MapImageRequest request)
 {
     this.GetMapGoogleAsync(request, null);
 }
예제 #4
0
 private System.IAsyncResult OnBeginGetMapGoogle(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     www.tannguyen.com.types.MapImageRequest request = ((www.tannguyen.com.types.MapImageRequest)(inValues[0]));
     return(((IMainService)(this)).BeginGetMapGoogle(request, callback, asyncState));
 }
예제 #5
0
 System.IAsyncResult IMainService.BeginGetMapGoogle(www.tannguyen.com.types.MapImageRequest request, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginGetMapGoogle(request, callback, asyncState));
 }