- name
- The name of the event to get.
- bindingAttr
- This invocation attribute. This must be a bit flag from System.Reflection.BindingFlags : InvokeMethod, NonPublic, and so on.
Returns an System.Reflection.EventInfo object representing the event declared or inherited by this type with the specified name. If there are no matches, null is returned.
As a workaround, to retrieve the event of a finished type, retrieve the type using Type.GetType or System.Reflection.Assembly.GetType(string) and use reflection on the retrieved type.