Click or drag to resize

StructuredGeoCodeArgs Class

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Object for specifying structured geocode arguments.
Inheritance Hierarchy
SystemObject
  Telogis.GeoBase.GeocodingGeoCodeArgs
    Telogis.GeoBase.GeocodingStructuredGeoCodeArgs

Namespace:  Telogis.GeoBase.Geocoding
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public class StructuredGeoCodeArgs : GeoCodeArgs

The StructuredGeoCodeArgs type exposes the following members.

Constructors
  NameDescription
Public methodStructuredGeoCodeArgs
Initializes a new instance of the StructuredGeoCodeArgs class
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
  NameDescription
Public fieldAddress
The street number and street of the address.
Public fieldCity
The city to be searched.
Public fieldCountry
The country to search.
(Inherited from GeoCodeArgs.)
Public fieldMaxResults
The maximum number of results to return.
(Inherited from GeoCodeArgs.)
Public fieldPostalCode
The postal code to be searched.
Public fieldRegion
The region to be searched.
Public fieldUseExternalGeocoder
Use external geocoder if available
(Inherited from GeoCodeArgs.)
Public fieldUseInternalGeocoder
Use the built-in geocoder
(Inherited from GeoCodeArgs.)
Top
Examples
C#
// Create a StructuredGeoCodeArgs object
var StructuredArgs = new Telogis.GeoBase.Geocoding.StructuredGeoCodeArgs() {
    Address = "20 Enterprise",
    City = "Aliso Viejo",
    Region = "California",
    PostalCode = "92656",
    MaxResults = 5,
    Country = Country.USA
};

// Pass the object to the Geocoder
GeocodeAddress[] StructuredArgsArray = GeoCoder.GeoCode(StructuredArgs);
See Also