- bindingAttr
- This must be a bit flag from System.Reflection.BindingFlags, such as InvokeMethod, NonPublic, and so on.
Returns an array of System.Reflection.EventInfo objects representing the public and non-public events declared or inherited by this type. An empty array is returned if there are no events, as specified.
As a workaround, to retrieve the events of a finished type, retrieve the type using Type.GetType or System.Reflection.Assembly.GetType(string) and use reflection on the retrieved type to retrieve the events.