Click or drag to resize

GeocodeAddressLine1 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.

The first line of this address in the form "1234 Main St".

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
[ObsoleteAttribute("Use AddressFormatter instead")]
public virtual string Line1 { get; }

Property Value

Type: String
Examples
C#
GeocodeAddress addr = GeoCoder.GeoCode("20 Enterprise, Aliso Viejo, California", Country.USA)[0];
// Street number and name only
Console.WriteLine("One line address: {0}", addr.Line1);
// 'One line address: 20 Enterprise'
See Also