TypeBuilder::GetNestedTypes Method (BindingFlags)
Returns the public and non-public nested types that are declared or inherited by this type.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- bindingAttr
-
Type:
System.Reflection::BindingFlags
This must be a bit flag from BindingFlags, as in InvokeMethod, NonPublic, and so on.
Return Value
Type: array<System::Type^>^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.
Implements
_Type::GetNestedTypes(BindingFlags)| Exception | Condition |
|---|---|
| NotSupportedException | This method is not implemented for incomplete types. |
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.
Available since 1.1
Silverlight
Available since 2.0