FRAMES | NO FRAMES
GetLocatorFields Method

Gets the list of address locator fields.

Availability: Business Analyst Server.

string[] GetLocatorFields ( 
    string  ActiveDatasetID      
); 

Parameter Description
ActiveDatasetID (Since version 9.3.1, this parameter is optional — it can be null).
ID of the active dataset. Type String.

Returns

Variable of type String[] containing the list of address locator fields

Examples

The example below requests a list of attribute field names used in address geocoding types and tasks.

C#
// Instantiate the BAServerHelper class to access analysis methods
BAServerHelper baServerHelper = new BAServerHelper();
baServerHelper.ActiveDatasetID = "USA_ESRI"; // Optional parameter
 
string[] locatorFields = baServerHelper.GetLocatorFields();

See Also