Click or drag to resize

GeocodeAddressGetFields Method (String)

Verizon Connect Logo
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
)

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: String

Given an arbitrary GeoCodeAddress:

C#
GetFields("SPA");

might return {"calle", "ciudad", "estado", "código del poste"}, and correspondingly

C#
string[] fields = GetFields("ENG");

would return {"street", "city", "state", "postcode"}.

See Also