Click or drag to resize

AddressNameInfoName Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
The name of the street.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public string Name { get; }

Property Value

Type: String
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());
// Print the result
Console.WriteLine("The street name at this location is '{0}'", newNameInfo.Name.ToString());
// The street name at this location is 'Athel Dr'
See Also