Click or drag to resize

IGeocodeResult Interface

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Stores the address used to find the result as the RawAddress. The result is stored in FoundAddress.

Namespace:  Telogis.GeoBase.Addresses
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public interface IGeocodeResult

The IGeocodeResult type exposes the following members.

Properties
  NameDescription
Public propertyFoundAddress
Gets the resulting IStructuredAddressData of the geocoded address.
Public propertyRawAddress
Gets the IAddressData that represents the original address given to find this IGeocodeResult.
Top
Examples
C#
GeocodeAddress[] address = GeoCoder.GeoCode("5537 Pine Crest Dr", "Happy Jack", "Arizona", "86024", Country.USA);
IGeocodeResult result = address[0].ToGeocodeResult();
See Also