Click or drag to resize

AddressCountry Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
The Country in which this Address is located.

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

Property Value

Type: Country
Examples
C#
// Set a location (Burbank Boulevard, Los Angeles)
LatLon Location = new LatLon(34.172167, -118.408671);
Country LocationCountry = GeoCoder.ReverseGeoCode(Location).Country;
Console.WriteLine("The country containing this address is {0}", LocationCountry.ToString());
// 'The country containing this address is USA'
See Also