Click or drag to resize

AddressSubRegions Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Suburb and regions where this address is located that subdivide the city.

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

Property Value

Type: String
Examples
C#
// Set a location (Burbank Boulevard, Los Angeles)
LatLon Location = new LatLon(34.172167, -118.408671);
String[] StreetSubRegions = GeoCoder.ReverseGeoCode(Location).SubRegions;
if (StreetSubRegions.Length > 0) {
    for (int i = 0; i < StreetSubRegions.Length; i++) {
        Console.WriteLine("Subregion found: '{0}'", StreetSubRegions[i]);
    }
} else {
    Console.WriteLine("No subregions found");
}
// 'No subregions found'
See Also