I think I know the answer to this but here goes. What I need (beyond the selected features) is the geometry of the selection area in map coordinates. What I'd like is to simply use what is already provided since that works great:

I see where I can use:
MapSelectionChangedEvent.Subscribe(OnSelectionChanged);
to be notified when the selection is made and I get the features selected:
private void OnSelectionChanged(MapSelectionChangedEventArgs args)
{
if (args.Map != _activeMap)
return;
UpdateForActiveMap(false, args.Selection.ToDictionary());
}
With this, I'm not seeing how to get the geometry of the selection area. Is there a way to get the selection area without writing a whole new selection tool ala: FeatureSelectionTool?
Thanks!