AddressNumber Property | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Number on street, -1 if no number.
Namespace:
Telogis.GeoBase
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public int Number { get; set; }
Public Property Number As Integer
Get
Set
Property Value
Type:
Int32Remarks In some instances the
GeoCoder may not be
able to return a street number for the location. In this instance, the Number
property will be set to -1.
Examples
LatLon Location = new LatLon(34.172167, -118.408671);
int FoundAddressNumber = GeoCoder.ReverseGeoCode(Location).Number;
Console.WriteLine("The number of this street address is {0}", FoundAddressNumber);
See Also