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