Esri Business Analyst Server API for Silverlight 2.2 Reference
ProfileByTableGeocodingParameters Class
Members  Example  See Also  Send Feedback
ESRI.ArcGIS.Client.BAServer.Tasks.Segmentation Namespace : ProfileByTableGeocodingParameters Class

Glossary Item Box

The ProfileByTableGeocodingParameters class provides input parameters for the Profile by Table Geocoding task.

Object Model

ProfileByTableGeocodingParameters ClassGeocodeData ClassFolderItem ClassBAResultType Class

Syntax

Remarks

Only matched address records will be taken into account in the output segmentation profile.

The output profile can be saved in the Business Analyst Server repository if the outputItem parameter is specified.

Example

The code snippet below creates ProfileByTableGeocodingParameters and then executes a Profile by Table Geocoding task.
C#Copy Code
ProfileByTableGeocodingParameters parameters = new ProfileByTableGeocodingParameters();
             
// The GeocodeData type is an address information for geocoding, e.g. 
//GeocodeData geocodeData = new GeocodeData(new TableData(geocodeAddressesData));
             
parameters.GeocodeData = geocodeData;
             
// Set a segmentation base.
parameters.SegmentationBase = "Total Households";
             
// Set an attribute field in the GeocodeData table which contains weight value (optional).
parameters.WeightField = "SALES";
             
profileByTableGeocodingTask.ExecuteAsync(parameters, new AsyncResponder(resultHandler, faultHandler));

Inheritance Hierarchy

System.Object
   ESRI.ArcGIS.Client.BACore.Client.BABaseParameters
      ESRI.ArcGIS.Client.BACore.Client.BAUtilityParameters
         ESRI.ArcGIS.Client.BAServer.Tasks.Segmentation.ProfileByTableGeocodingParameters

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2010-2012 Esri, Inc. All Rights Reserved.