EnumBuilder.GetNestedTypes(BindingFlags) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the public and non-public nested types that are declared or inherited by this type.
public:
override cli::array <Type ^> ^ GetNestedTypes(System::Reflection::BindingFlags bindingAttr);
public override Type[] GetNestedTypes (System.Reflection.BindingFlags bindingAttr);
override this.GetNestedTypes : System.Reflection.BindingFlags -> Type[]
Public Overrides Function GetNestedTypes (bindingAttr As BindingFlags) As Type()
Parameters
- bindingAttr
- BindingFlags
This must be a bit flag from BindingFlags, such as InvokeMethod
, NonPublic
, and so on.
Returns
An array of Type objects representing all the types nested within the current Type that match the specified binding constraints.
An empty array of type Type, if no types are nested within the current Type, or if none of the nested types match the binding constraints.
Exceptions
This method is not currently supported in types that are not complete.
Remarks
As a workaround, to retrieve the nested types of a finished type, retrieve the type using Type.GetType or Assembly.GetType and use reflection on the retrieved type.