Creating a Custom EventAggregator Class
- by Phil
One thing I noticed about Microsoft's Composite Application Guidance is that the EventAggregator class is a little inflexible. I say that because getting a particular event from the EventAggregator involves identifying the event by its type like so:
_eventAggregator.GetEvent<MyEventType>();
But what if you want different events of the same…