Click or drag to resize

AddressCounty Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
The name of the county. This value may be null if relevant county data is unavailable or not applicable at this location.

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

Property Value

Type: String
Examples
C#
// Set a location (San Diego Freeway, Los Angeles)
LatLon Location = new LatLon(33.668795, -117.820095);
String county = GeoCoder.ReverseGeoCode(Location).County;
Console.WriteLine("The county containing this address is {0}", county);
// 'The county containing this address is Orange'
See Also