Click or drag to resize

StreetLinkNames Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Implemented by derived classes to get an array of the names of this street.

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

Property Value

Type: String
Examples
C#
String[] streetNames = GeoCoder.ReverseGeoCodeFull(new LatLon(33.634705, -117.898371)).StreetLink.Names;
for (int i = 0; i < streetNames.Length; i++) {
    Console.WriteLine("-- {0}", streetNames[i]);
    // -- Kathleen Ln
}
See Also