我希望能够通过传递事件的名称和依赖于客户端代码的Action来订阅任何对象的任何事件。我有以下代码
public static class EventSubscriber
{
public static object Subscriber<TEventArgs>(
this object obj,
string eventName,
Action handler,
Func<TEventArgs, bool> canExecute)
{
var eventInfo = obj.GetType().
GetEvent(eventName);
if (eventInfo == null)
throw new ArgumentException("Event name provided does not exist", nameof(eventName));
var handlerArgs = eventInfo.EventHandlerType.
GetMethod("Invoke").
GetParameters()
.Select(p => p.ParameterType).ToArray();
var method = new DynamicMethod("method", typeof (void), handlerArgs);
var generator = method.GetILGenerator(256);
generator.EmitCall(OpCodes.Call, handler.Method, null);
eventInfo.
AddEventHandler(
obj,
method.CreateDelegate(eventInfo.EventHandlerType));
return obj;
}
}
使用上面的代码:
var Polygons = new ObservableCollection<Polygon>(myList);
Polygons.Subscriber<NotifyCollectionChangedEventArgs>
("CollectionChanged",
() => MessageBox.Show("hello"),
e => e.OldItems != null);
当事件触发时,它会导致InvalidProgramException。 我知道这是一个棘手的问题,我可以使用+ =订阅,但有人可以告诉我为什么我的代码崩溃了吗? 我想ILGenerator.Emit有什么问题,有什么建议吗?
答案 0 :(得分:1)
您忘记在factory.SSL.Protocols = SslProtocols.TLS12 | SslProtocols.Ssl2;
结束时返回。
DynamicMethod
编译器为var method = new DynamicMethod("method", typeof (void), handlerArgs);
var generator = method.GetILGenerator(256);
generator.EmitCall(OpCodes.Call, handler.Method, null);
generator.Emit(OpCodes.Ret); //every method must have a return statement
lambda创建的类是私有的。[reference]
当您在() => MessageBox.Show("hello")
课程中使用public
static
方法时,它会起作用。
public