- bindingAttr
- This must be a bit flag from System.Reflection.BindingFlags, such as InvokeMethod, NonPublic, and so on.
Returns an array of System.Reflection.MethodInfo objects representing the public and non-public methods defined on this type if nonPublic is used; otherwise, only the public methods are returned.
As a workaround, to retrieve the methods of a finished type, retrieve the type using Type.GetType or System.Reflection.Assembly.GetType(string) and use reflection on the retrieved type.