Пример #1
0
 /// <remarks/>
 public void GetMapAsync(MapSpecification specification) {
     this.GetMapAsync(specification, null);
 }
Пример #2
0
 /// <remarks/>
 public void GetMapAsync(MapSpecification specification, object userState) {
     if ((this.GetMapOperationCompleted == null)) {
         this.GetMapOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetMapOperationCompleted);
     }
     this.InvokeAsync("GetMap", new object[] {
                 specification}, this.GetMapOperationCompleted, userState);
 }
Пример #3
0
 public MapImage[] GetMap(MapSpecification specification) {
     object[] results = this.Invoke("GetMap", new object[] {
                 specification});
     return ((MapImage[])(results[0]));
 }