Click or drag to resize

AddressNameInfoIsPrimaryName Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Whether this is a primary name.

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

Property Value

Type: Boolean
Examples
C#
// Set a location (San Joaquin Hills Trans Corridor, Los Angeles)
LatLon Location = new LatLon(33.593840, -117.762379);
StringBuilder compiledOutput = new StringBuilder();
// Construct an Address.NameInfo array
Address.NameInfo[] myStreetsArray = GeoCoder.ReverseGeoCode(Location).ExtendedNameInfo;
for (int i = 0; i < myStreetsArray.Length; i++) {
    if (myStreetsArray[i].IsPrimaryName) {
        compiledOutput.AppendFormat("Street name '{0}' is this street's primary name.\n", myStreetsArray[i].Name);
    } else {
        compiledOutput.AppendFormat("Street name '{0}' is not this street's primary name.\n", myStreetsArray[i].Name);
    }
}
Console.WriteLine(compiledOutput);
// Street name 'San Joaquin Hills Trans Corridor [Ca-73]' is not this street's primary name.
// Street name 'Ca-73' is not this street's primary name.
// Street name 'San Joaquin Hills Trans Corridor' is this street's primary name.
See Also