Click or drag to resize

GeocodeAddressSubregions Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
The name of the regions within a city.

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

Property Value

Type: String
Examples
C#
GeocodeAddress addr = GeoCoder.GeoCode("20 Enterprise, Aliso Viejo, California", Country.USA)[0];
String[] regionsArray = addr.Subregions;
if (regionsArray.Length > 0) {
    Console.WriteLine("Subregions within this city are:");
    for (int i = 0; i < regionsArray.Length; i++) {
        Console.WriteLine(regionsArray[i]);
    }
} else {
    Console.WriteLine("No subregions found.");
}
See Also