Is there any way of looking at all the subscriptions contained within the EventAggregator for all Events?
Theres only a .GetEvent method off the EventAggregator ... but I'd just like to see all subscriptions that are contained within it ... without having to go each Event in turn.
Thanks
The out-of-the-box implementation does not provide a means for you to obtain all events. Therefore, if you want this you'll need to either:
EventAggregator
IEventAggregator
with another property that yields all events. You can't use inheritance to add this because the dictionary of events is declared private, not protected