i m using identify tool sample in my application
i want to add graphic layer when i click on map for identify
i m trying
foreach (Graphic selectedGraphic in args.FeatureSet.Features)
{
selectedGraphic.Symbol = LayoutRoot.Resources["ParcelSymbol"] as ESRI.ArcGIS.Client.Symbols.Symbol;
_resultsGraphicsLayer.Graphics.Add(selectedGraphic);
}
it gives error on Featureset (does not contain a defination for FeatureSet)
dont known how to add graphic layer