Where can I read about about this new feature in the draw class in 2.1?
MapPoint addPoint;
void MyMap_MouseClick(object sender, ESRI.ArcGIS.Client.Map.MouseEventArgs e)
{
addPoint = e.MapPoint;
}
void MyMap_KeyDown(object sender, KeyEventArgs e)
{
if (e.Key == Key.Delete)
MyDrawObject.UndoLastVertex();
else if (e.Key == Key.Insert)
MyDrawObject.AddVertex(addPoint);
else if (e.Key == Key.Enter)
MyDrawObject.CompleteDraw();
}