Click or drag to resize

AddressNameInfo Constructor

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Constructs a new NameInfo given a street name. All other fields have default values.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public NameInfo(
	string name
)

Parameters

name
Type: SystemString
The name of the street.
Examples
C#
// Set a location
LatLon Location = new LatLon(34.0000, -118.0000);
// Construct an Address.NameInfo
Address.NameInfo newNameInfo = new Address.NameInfo(GeoCoder.ReverseGeoCode(Location).Names[0].ToString());
See Also