我想使用反射订阅 EventAggregator 事件,因为我试图在运行时动态连接 Prism 模块之间的事件订阅。(我使用的是 Silverlight 5、Prism 和 MEF)。
我想要实现的是调用_eventAggregator.GetEvent<MyType>().Subscribe(MyAction)
我的一个模块,但我被困在调用_eventAggregator.GetEvent<MyType>()
. 我怎样才能从那里开始打电话Subscribe(MyAction)
?
假设我的 Event 课程是public class TestEvent : CompositePresentationEvent<string> { }
. 我在编译时不知道这一点,但我在运行时知道类型。
这是我到目前为止所得到的:
Type myType = assembly.GetType(typeName); //get the type from string
MethodInfo method = typeof(IEventAggregator).GetMethod("GetEvent");
MethodInfo generic = method.MakeGenericMethod(myType);//get the EventAggregator.GetEvent<myType>() method
generic.Invoke(_eventAggregator, null);//invoke _eventAggregator.GetEvent<myType>();
我真的很感激一个正确方向的指针。