EnumBuilder::GetNestedTypes Method (BindingFlags)
.NET Framework (current version)
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, such as 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 currently supported in types that are not complete. |
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.
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Available since 1.1
Silverlight
Available since 2.0
Show: