コード例 #1
0
ファイル: Reference.cs プロジェクト: ericzhc/pdale
 /// <remarks/>
 public void GetMapAsync(MapSpecification specification) {
     this.GetMapAsync(specification, null);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: ericzhc/pdale
 /// <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
ファイル: Reference.cs プロジェクト: ericzhc/pdale
 public MapImage[] GetMap(MapSpecification specification) {
     object[] results = this.Invoke("GetMap", new object[] {
                 specification});
     return ((MapImage[])(results[0]));
 }