Click or drag to resize

ExtendedStructuredGeoCodeArgs Class

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

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

The ExtendedStructuredGeoCodeArgs type exposes the following members.

Constructors
  NameDescription
Public methodExtendedStructuredGeoCodeArgs
Initializes a new instance of the ExtendedStructuredGeoCodeArgs 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 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 fieldName
A string representing the street name.
Public fieldNumber
An integer representing the street number.
Public fieldPostalCode
The postal code to be searched.
Public fieldPrefix
A string representing the street prefix, such as 'chemin' or 'north'.
Public fieldRegion
The region to be searched.
Public fieldStreetTypeAfter
A string representing the street type (after), such as 'street', 'avenue' or 'road'.
Public fieldStreetTypeBefore
A string representing the street type (before), such as 'rue' or 'boulevard'.
Public fieldSuffix
A string representing the street suffix, such as 'north', 'central' or 'loop'.
Public fieldUseExternalGeocoder
Use external geocoder if available
(Inherited from GeoCodeArgs.)
Public fieldUseInternalGeocoder
Use the built-in geocoder
(Inherited from GeoCodeArgs.)
Top
Examples
C#
// Create an ExtendedStructuredGeoCodeArgs object
var ExtendedStructuredArgs = new Telogis.GeoBase.Geocoding.ExtendedStructuredGeoCodeArgs() {
    Number = 17,
    Prefix = "West",
    Name = "Ryley",
    StreetTypeAfter = "Court",
    City = "Aliso Viejo",
    Region = "California",
    PostalCode = "92656",
    MaxResults = 5,
    Country = Country.USA
};

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