AddressLine1 Property | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release Note: This API is now obsolete.
Returns a formatted string representing the first line of a
street address.
Namespace:
Telogis.GeoBase
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax [ObsoleteAttribute("Use AddressFormatter instead")]
public string Line1 { get; }
<ObsoleteAttribute("Use AddressFormatter instead")>
Public ReadOnly Property Line1 As String
Get
Property Value
Type:
StringRemarks The string is comprised of the street number (if a number
is present) followed by the primary street name.
Examples
LatLon Location = new LatLon(34.172167, -118.408671);
String Line1Address = GeoCoder.ReverseGeoCode(Location).Line1;
Console.WriteLine("The first line of this street address is {0}", Line1Address);
See Also