Click or drag to resize

LocationSearchBulkSearch Method (LocationSearchBaseArgs)

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Perform a bulk location search using an array of LocationSearchBaseArgs.

Namespace:  Telogis.GeoBase.Geocoding
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public static LocationSearchResult[] BulkSearch(
	LocationSearchBaseArgs[] bulkArgs
)

Parameters

bulkArgs
Type: Telogis.GeoBase.GeocodingLocationSearchBaseArgs
The array of arguments for the Location Search operations.

Return Value

Type: LocationSearchResult
A LocationSearchResult for each Location Search request.
Examples
C#
var bulkArgs = new[] {
    new LocationSearchArgs {
        Query = "20 enterprise, aliso viejo",
        Countries = new Country[] { Country.USA },
    }
};
LocationSearchResult[] results = LocationSearch.BulkSearch(bulkArgs);
Console.WriteLine(results[0].Suggestions[0]);
See Also