AutocompleteGeocoderArgs Constructor (String, Country, LatLon, TimeSpan) | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Constructs an arguments object for searching within a specific country.
Namespace:
Telogis.GeoBase.Geocoding
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public AutocompleteGeocoderArgs(
string query,
Country country,
LatLon locationHint,
TimeSpan timeout
)
Public Sub New (
query As String,
country As Country,
locationHint As LatLon,
timeout As TimeSpan
)
Parameters
- query
- Type: SystemString
The partial address string for which to search. - country
- Type: Telogis.GeoBaseCountry
The Country in which to search. - locationHint
- Type: Telogis.GeoBaseLatLon
An optional LatLon value. The location hint adds a bias towards
nearby results when there are more results than the results limit, and also influences the ranking of results. If you do
not want to use a location hint, set this parameter to Empty. - timeout
- Type: SystemTimeSpan
Specifies how long the search should continue before terminating prematurely. Specifying a timeout of
TimeSpan.Zero means that the search will not timeout. When a search times out, the
AutocompleteGeocoderResult object returned will contain all suggestions found
prior to the timeout and has a status of Timeout.
See Also