I'm creating a COM-object and can call all of its methods, get and set properties using comType.InvokeMember with different BindingFlags. The COM-object has a very huge interface, so it will be a lot of work for me to define it, and the object implements IDispatch.
Is there a way to add event handler for one of the object's events using reflection? I tried using comType.GetEvent to get EventInfo, but it could find it. Also there are no events found by comType.GetEvents either.