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

Glossary Item Box

The CreateStdGeographiesParameters class provides input parameters for the Create Standard Geographies task.

Object Model

CreateStdGeographiesParameters ClassFolderItem ClassOutputTypes ClassBAResultType Class

Syntax

Remarks

Output options for this task include creating a feature class for subsequent analysis (OutputTypes.GetFeatureClass). If no output options are specified, the feature class will be returned in the case when the OutputAnalysisItem is absent.

Example

The code snippet below creates CreateStdGeographiesParameters and then executes a Create Standard Geographies task.
C#Copy Code
CreateStdGeographiesParameters parameters = new CreateStdGeographiesParameters();
            
// FeatureList is a list of ESRI.ArcGIS.Client.BAServer.StdGeographiesFeaturesInLevel types, e.g.
//StdGeographiesFeaturesInLevel featureInLevel = new StdGeographiesFeaturesInLevel();
//featureInLevel.LevelID = "US.Counties";
//featureInLevel.FeatureID = new List<string>(){"01021", "01045", "01121"};
            
parameters.FeatureList = new List<StdGeographiesFeaturesInLevel>() { featureInLevel };
 
createStdGeographiesTask.ExecuteAsync(parameters, new AsyncResponder(resultHandler, faultHandler));

Inheritance Hierarchy

System.Object
   ESRI.ArcGIS.Client.BACore.Client.BATaskParameters
      ESRI.ArcGIS.Client.BACore.Client.AnalysisParameters
         ESRI.ArcGIS.Client.BAServer.Tasks.StdGeographies.CreateStdGeographiesParameters

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.