StreetLinkNames Property | |
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; }
Public MustOverride ReadOnly Property Names As String()
Get
Property Value
Type:
StringExamples 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]);
}
See Also