If I click a specific MapPoint (represented by a SimpleGraphicSymbol) within a MultiPoint, how can i retrieve the information for only the point that was clicked. Here's the code displaying the MultiPoint:
<esri:GraphicsLayer id="glDeviceLayer"
symbol="{deviceMarker}">
<esri:Graphic id="glDevicePoints"
click="pointClick(event)">
<esri:geometry>
<esri:Multipoint id="multipoint"
points="{mapPoints}" />
</esri:geometry>
</esri:Graphic>
</esri:GraphicsLayer>