views:

6490

answers:

9

How would you dynamically subscribe to a C# event so that given a Object instance and a String name containing the name of the event, you subscribe to that event and do something (write to the console for example) when that event has been fired?

It would seem using Reflection this isn't possible and I would like to avoid having to use Reflection.Emit if possible, as this currently (to me) seems like the only way of doing it.

/EDIT: I do not know the signature of the delegate needed for the event, this is the core of the problem

/EDIT 2: Although delegate contravariance seems like a good plan, I can not make the assumption necessary to use this solution

A: 

What you want can be achieved using dependency injection. For example Microsoft Composite UI app block does exactly what you described

aku
+1  A: 

It is possible to subscribe to an event using Reflection

var o = new SomeObjectWithEvent;
o.GetType().GetEvent("SomeEvent").AddEventHandler(...);

http://msdn.microsoft.com/en-us/library/system.reflection.eventinfo.addeventhandler.aspx

Now here is going to be the problem that you are going to have to solve. The delegates required for each event handler will have different signatures. You are going to have to find away to create these methods dynamically, which probably means Reflection.Emit, or you are going to have to limit your self to a certain delegate so that you can handle it with compiled code.

Hope this helps.

Nick Berardi
A: 

Do you mean something like:

//reflect out the method to fire as a delegate
EventHandler eventDelegate = 
   ( EventHandler ) Delegate.CreateDelegate(
       typeof( EventHandler ),    //type of event delegate
       objectWithEventSubscriber, //instance of the object with the matching method
       eventSubscriberMethodName, //the name of the method
       true );

This doesn't do the subscription, but will give to the method to call.

Edit:

Post was clarified after this answer, my example won't help if you don't know the type.

However all events in .Net should follow the default event pattern, so as long as you've followed it this will work with the basic EventHandler.

Keith
A: 
public TestForm()
{
    Button b = new Button();

    this.Controls.Add(b);

    MethodInfo method = typeof(TestForm).GetMethod("Clickbutton",
    BindingFlags.NonPublic | BindingFlags.Instance);
    Type type = typeof(EventHandler);

    Delegate handler = Delegate.CreateDelegate(type, this, method);

    EventInfo eventInfo = cbo.GetType().GetEvent("Click");

    eventInfo.AddEventHandler(b, handler);

}

void Clickbutton(object sender, System.EventArgs e)
{
    // Code here
}
Erick Sgarbi
A: 

@Keith

If I understood the problem right, he didn't know what the signature of the delegate is that he wanted to bind to.

Nick Berardi
+11  A: 

If you want to, for example, only use void methods without any arguments as event handlers for events of any type, you can compile expression trees to do that. This can be modified to accomodate other event handler types, but you'll have to map the event handler's parameters to the event's somehow.

using System;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;

class EventRaiser
 { public event EventHandler SomethingHappened;
 }

class Handler
 { public void HandleEvent() { /* ... */}
 }

class EventProxy
 { static public Delegate Create(EventInfo evt, Action d)
    { var handlerType = evt.EventHandlerType;
      var eventParams = handlerType.GetMethod("Invoke").GetParameters();

      //lambda: (object x0, EventArgs x1) => d()
      var parameters = eventParams.Select(p=>Expression.Parameter(p.ParameterType,"x"));
        // - assumes void method with no arguments but can be
        //   changed to accomodate any supplied method
      var body = Expression.Call(Expression.Constant(d),d.GetType().GetMethod("Invoke"));
      var lambda = Expression.Lambda(body,parameters.ToArray());
      return Delegate.CreateDelegate(handlerType, lambda.Compile(), "Invoke", false);
    } 
 }

public static void attachEvent()
 { var raiser  = new EventRaiser();
   var handler = new Handler();
   string eventName = "SomethingHappened";
   var eventinfo = raiser.GetType().GetEvent(eventName);
   eventinfo.AddEventHandler(raiser,EventProxy.Create(eventinfo,handler.HandleEvent));

   //or even just:
   eventinfo.AddEventHandler(raiser,EventProxy.Create(eventinfo,()=>Console.WriteLine("!")));   
 }
Mark Cidade
Hell, expression trees are so cool. I wrote similar code once via Reflection.Emit. What a pain.
SealedSun
+3  A: 

It's not a completely general solution, but if all your events are of the form void Foo(object o, T args) , where T derives from EventArgs, then you can use delegate contravariance to get away with it. Like this (where the signature of KeyDown is not the same as that of Click) :

    public Form1()
    {
        Button b = new Button();
        TextBox tb = new TextBox();

        this.Controls.Add(b);
        this.Controls.Add(tb);
        WireUp(b, "Click", "Clickbutton");
        WireUp(tb, "KeyDown", "Clickbutton");
    }

    void WireUp(object o, string eventname, string methodname)
    {
        EventInfo ei = o.GetType().GetEvent(eventname);

        MethodInfo mi = this.GetType().GetMethod(methodname, BindingFlags.Public | BindingFlags.Instance | BindingFlags.NonPublic);

        Delegate del = Delegate.CreateDelegate(ei.EventHandlerType, this, mi);

        ei.AddEventHandler(o, del);

    }
    void Clickbutton(object sender, System.EventArgs e)
    {
        MessageBox.Show("hello!");
    }
Matt Bishop
A: 

Try LinFu--it has a universal event handler that lets you bind to any event at runtime. For example, here's you you can bind a handler to the Click event of a dynamic button:

// Note: The CustomDelegate signature is defined as:
// public delegate object CustomDelegate(params object[] args);
CustomDelegate handler = delegate
                         {
                           Console.WriteLine("Button Clicked!");
                           return null;
                         };

Button myButton = new Button();
// Connect the handler to the event
EventBinder.BindToEvent("Click", myButton, handler);

LinFu lets you bind your handlers to any event, regardless of the delegate signature. Enjoy!

You can find it here: http://www.codeproject.com/KB/cs/LinFuPart3.aspx

plaureano
+1  A: 

I recently wrote a series of blog posts describing unit testing events, and one of the techniques I discuss describes dynamic event subscription. I used reflection and MSIL (code emitting) for the dynamic aspects, but this is all wrapped up nicely. Using the DynamicEvent class, events can be subscribed to dynamically like so:

EventPublisher publisher = new EventPublisher();

foreach (EventInfo eventInfo in publisher.GetType().GetEvents())
{
    DynamicEvent.Subscribe(eventInfo, publisher, (sender, e, eventName) =>
    {
        Console.WriteLine("Event raised: " + eventName);
    });
}

One of the features of the pattern I implemented was that it injects the event name into the call to the event handler so you know which event has been raised. Very useful for unit testing.

The blog article is quite lengthy as it is describing an event unit testing technique, but full source code and tests are provided, and a detailed description of how dynamic event subscription was implemented is detailed in the last post.

http://gojisoft.com/blog/2010/04/22/event-sequence-unit-testing-part-1/

chibacity
404 on your blog link there
Robert MacLean
@Robert Cheers for commenting, we had some outage yesterday after patching our web server.
chibacity