Community Analyst API for Silverlight 2.2 Reference
StdGeographiesByAttributesParameters Class
Members  Example  See Also  Send Feedback
ESRI.ArcGIS.Client.BAO.Tasks.StdGeographies Namespace : StdGeographiesByAttributesParameters Class

Glossary Item Box

The StdGeographiesByAttributesParameters class provides input parameters for the Standard Geographies by Attributes task.

Object Model

StdGeographiesByAttributesParameters ClassBAResultType Class

Syntax

Remarks

The GeoLevelID parameter specifies ID of the standard geography level to search geography features in.

The SearchString parameter specifies a string to search in IDs and names of geography features. If this parameter is missing or empty, all features of the data layer are recognized as matching features and will be returned.

Example

The code snippet below creates StdGeographiesByAttributesParameters and then executes a Standard Geographies by Attributes task.
C#Copy Code
StdGeographiesByAttributesParameters parameters = new StdGeographiesByAttributesParameters();
            
parameters.GeoLevelID = "US.ZIP5";
parameters.SearchString = "Redlands";
            
stdGeographiesByAttributesTask.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.BAO.Tasks.StdGeographies.StdGeographiesByAttributesParameters

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.