Example #1
0
 /// <remarks/>
 public void getChildrenLocationsAsync(string sessionHash, LocationMarker am) {
     this.getChildrenLocationsAsync(sessionHash, am, null);
 }
Example #2
0
 /// <remarks/>
 public void getChildrenLocationsAsync(string sessionHash, LocationMarker am, object userState) {
     if ((this.getChildrenLocationsOperationCompleted == null)) {
         this.getChildrenLocationsOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetChildrenLocationsOperationCompleted);
     }
     this.InvokeAsync("getChildrenLocations", new object[] {
                 sessionHash,
                 am}, this.getChildrenLocationsOperationCompleted, userState);
 }
Example #3
0
 public LocationMarker[] getChildrenLocations(string sessionHash, LocationMarker am) {
     object[] results = this.Invoke("getChildrenLocations", new object[] {
                 sessionHash,
                 am});
     return ((LocationMarker[])(results[0]));
 }