Click or drag to resize

AddressLine1 Property

Verizon Connect Logo
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; }

Property Value

Type: String
Remarks
The string is comprised of the street number (if a number is present) followed by the primary street name.
Examples
C#
// Set a location (Burbank Boulevard, Los Angeles)
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);
// 'The first line of this street address is 12649 Burbank Blvd'
See Also