I want to select a feature by using a geometry in a map like in IMap interface in ArcObjects and get the feature object too.
// ArcObjects
void SelectByShape(IGeometry Shape, ISelectionEnvironment env, bool justOne);
Note: I know that I can use
var features = activeView.GetFeatures(geometry);
But this method exists in the MapView class not in the Map class.