AddEventHandler używający odbicia

Mam ten fragment kodu, który nie działa:

public CartaoCidadao()
{
    InitializeComponent();

    object o = WebDAV.Classes.SCWatcher.LoadAssembly();
    MethodInfo method = 
        this.GetType().GetMethod("Inserted", 
                                 BindingFlags.NonPublic | BindingFlags.Instance);

    EventInfo eventInfo = o.GetType().GetEvent("CardInserted");
    Type type = eventInfo.EventHandlerType;
    Delegate handler = Delegate.CreateDelegate(type, this , method);

    eventInfo.AddEventHandler(o, handler);
}

void Inserted(string readerName, string cardName)
{
    System.Windows.Forms.MessageBox.Show(readerName);
}

Wstawiona karta zdarzenia istnieje w innym pliku DLL, a obiekt „o” ładuje się OK. Obsługa delegata ma wartość po efekcie. Nie mogę wystrzelić zdarzenia.

questionAnswers(3)

yourAnswerToTheQuestion