Beispiel #1
0
 public int findAddress(string service, Rock.TeleAtlas.Geocoding.NameValue[] input, int identity, out Rock.TeleAtlas.Geocoding.Geocode result)
 {
     Rock.TeleAtlas.Geocoding.findAddressRequest inValue = new Rock.TeleAtlas.Geocoding.findAddressRequest();
     inValue.service  = service;
     inValue.input    = input;
     inValue.identity = identity;
     Rock.TeleAtlas.Geocoding.findAddressResponse retVal = ((Rock.TeleAtlas.Geocoding.GeocodingPortType)(this)).findAddress(inValue);
     result = retVal.result;
     return(retVal.resultCode);
 }
Beispiel #2
0
 public findAddressResponse(int resultCode, Rock.TeleAtlas.Geocoding.Geocode result)
 {
     this.resultCode = resultCode;
     this.result     = result;
 }