GeocodeAddressGetFields Method (String) | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Implemented by derived classes to get the fields contained within this address, in the specified language.
Namespace:
Telogis.GeoBase
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public abstract string[] GetFields(
string lang
)
Public MustOverride Function GetFields (
lang As String
) As String()
Parameters
- lang
- Type: SystemString
A three-character string specifying the language by ISO country code.
Eg, "ENG" for English and "SPA" for Spanish.
Return Value
Type:
StringGiven an arbitrary GeoCodeAddress:
might return {"calle", "ciudad", "estado", "código del poste"}, and correspondingly
string[] fields = GetFields("ENG");
would return {"street", "city", "state", "postcode"}.
See Also