Click or drag to resize

OneLineGeoCodeArgs Class

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Object for specifying one-line geocode arguments.
Inheritance Hierarchy

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

The OneLineGeoCodeArgs type exposes the following members.

Constructors
  NameDescription
Public methodOneLineGeoCodeArgs
Initializes a new instance of the OneLineGeoCodeArgs 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 fieldCountry
The country to search.
(Inherited from GeoCodeArgs.)
Public fieldMaxResults
The maximum number of results to return.
(Inherited from GeoCodeArgs.)
Public fieldOneLineAddress
The full address to be searched for.
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 OneLineGeoCodeArgs object
var OneLineArgs = new Telogis.GeoBase.Geocoding.OneLineGeoCodeArgs() {
    OneLineAddress = "20 Enterprise, Aliso Viejo, CA",
    MaxResults = 5,
    Country = Country.USA
};

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