I am using the ESRI Silverlight API to reproject a graphic into GCS_WGS_1984. The graphic has a single mappoint as it's geometry property.Here is the code I am using:
//mp contains the MapPoint geometry
Graphic projectedGraphic = new Graphic() { Geometry = mp };
projectedGraphic.Attributes.Add("MyAttribute", "Data");
_geometryService.ProjectAsync(new List<Graphic>() { projectedGraphic }, new SpatialReference(4326));
The graphic reprojects correctly, however the resulting graphic does not contain the attribute that I previously had assigned. Is there any way to maintain this attribute across a reprojection?Thanks,Seth