public IAsyncResult BeginGetMapUri(
     MapUriRequest request,
     AsyncCallback callback,
     object asyncState)
 {
     return(this.Channel.BeginGetMapUri(request, callback, asyncState));
 }
 public void GetMapUriAsync(MapUriRequest request, object userState)
 {
     if (this.onBeginGetMapUriDelegate is null)
     {
         this.onBeginGetMapUriDelegate = new ClientBase <IImageryService> .BeginOperationDelegate(this.OnBeginGetMapUri);
     }
     if (this.onEndGetMapUriDelegate is null)
     {
         this.onEndGetMapUriDelegate = new ClientBase <IImageryService> .EndOperationDelegate(this.OnEndGetMapUri);
     }
     if (this.onGetMapUriCompletedDelegate is null)
     {
         this.onGetMapUriCompletedDelegate = new SendOrPostCallback(this.OnGetMapUriCompleted);
     }
     this.InvokeAsync(this.onBeginGetMapUriDelegate, new object[1]
     {
         (object)request
     }, this.onEndGetMapUriDelegate, this.onGetMapUriCompletedDelegate, userState);
 }
 public void GetMapUriAsync(MapUriRequest request)
 {
     this.GetMapUriAsync(request, (object)null);
 }
 public MapUriResponse GetMapUri(MapUriRequest request)
 {
     return(this.Channel.GetMapUri(request));
 }