Click or drag to resize

AddressStreetNumberFull Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
The street number of the address e.g. 20, 5b or 10-12.

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

Property Value

Type: String
Remarks
Returns the same value as Number if source data does not contain non-numeric street numbers.
Examples
C#
// Using Point Address Data
// Set a location (Leiria, Portugal)
LatLon location = new LatLon(39.749216, -8.844621);
string foundStreetNumberFull = GeoCoder.ReverseGeoCode(location).StreetNumberFull;
Console.WriteLine("The full number of this street address is {0}", foundStreetNumberFull);
// 'The full number of this street address is 315A
See Also