I am working on a modular application with Prism DryIoc on WPF
In my modules I have views registered for navigation like this
public void RegisterTypes(IContainerRegistry containerRegistry)
{
containerRegistry.RegisterForNavigation<Manual1View>();
containerRegistry.RegisterForNavigation<Manual2View>();
containerRegistry.RegisterForNavigation<ProductionView>();
}
Is there a way to find the list of currently registered views for navigation directly from Prism or the Container ?