Click or drag to resize

AddressPostalCode Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
The postal (ZIP) code associated with this address.

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

Property Value

Type: String
Remarks

Postcodes are formatted as they would be locally.

Examples
C#
// Set a location (Burbank Boulevard, Los Angeles)
LatLon Location = new LatLon(34.172167, -118.408671);
String LocationPostalCode = GeoCoder.ReverseGeoCode(Location).PostalCode;
Console.WriteLine("Location's postal code is '{0}'", LocationPostalCode);
// Location's postal code is '91607'
See Also