
The analysis can be restricted to an analysis extent if the analysisExtent
parameter is specified.
Output options for this task include rendering an output image (OutputTypes.GetMapImage) and/or creating a feature class for subsequent analysis (OutputTypes.GetFeatureClass). If no output options are specified, the required output options are specified as follows. If the RenderingParameters
parameter is specified, the image output is requested. If the OutputAnalysisItem
parameter is specified, the output analysis feature class will be stored in the repository. If both RenderingParameters
and OutputAnalysisItem
parameters are missing, the feature class output is requested.
C# | ![]() |
---|---|
AssignCustomersByTradeAreaParameters parameters = new AssignCustomersByTradeAreaParameters(); // The PointLayer type could take either data as // ESRI.ArcGIS.Client.Tasks.FeatureSet, ESRI.ArcGIS.Client.BAServer.FolderItem, // or a list of ESRI.ArcGIS.Client.BACore.PointRecord items. parameters.Customers = new PointLayer(customers); // Set the name of field in the Customers layer to be used for assignment customers with stores. parameters.CustomerLinkField = "STORE_ID"; // The Boundaries type could take either data as // ESRI.ArcGIS.Client.Tasks.FeatureSet, ESRI.ArcGIS.Client.BAServer.FolderItem, // or ESRI.ArcGIS.Client.BACore.StandardLayer. parameters.Boundaries = boundaries; // Set the name of store ID field in the Boundaries layer. "STORE_ID" is the default value. //parameters.StoreIDField = "STORE_ID"; // Optionally restrict analysis to ExtendData object specified with myExtent. //parameters.AnalysisExtent = myExtent; assignCustomersByTradeAreaTask.ExecuteAsync(parameters, new AsyncResponder(resultHandler, faultHandler)); |
System.Object
ESRI.ArcGIS.Client.BACore.Client.BATaskParameters
ESRI.ArcGIS.Client.BACore.Client.AnalysisParameters
ESRI.ArcGIS.Client.BAServer.Tasks.AnalysisParameters
ESRI.ArcGIS.Client.BAServer.Tasks.CustomerStoreSetup.AssignCustomersByTradeAreaParameters
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