TypeBuilder.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, as in 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 implemented for incomplete types.
Remarks
Retrieve the type using Type.GetType or Assembly.GetType and use reflection on the retrieved type.
If this type is complete, for example, if CreateType
has been called on this type, but there are nested types that are not complete, then GetNestedTypes
will only return those nested types for which CreateType
has been called.