_Type.GetNestedTypes Method

Definition

Provides COM objects with version-independent access to the GetNestedTypes method.

Overloads

GetNestedTypes()

Provides COM objects with version-independent access to the GetNestedTypes() method.

GetNestedTypes(BindingFlags)

Provides COM objects with version-independent access to the GetNestedTypes(BindingFlags) method, and searches for the types nested within the current Type, using the specified binding constraints.

Remarks

This method is for access to managed classes from unmanaged code, and should not be called from managed code.

The Type.GetNestedTypes method gets the types nested within the current Type.

GetNestedTypes()

Provides COM objects with version-independent access to the GetNestedTypes() method.

public:
 cli::array <Type ^> ^ GetNestedTypes();
public Type[] GetNestedTypes ();
abstract member GetNestedTypes : unit -> Type[]
Public Function GetNestedTypes () As Type()

Returns

Type[]

An array of Type objects representing all the types nested within the current Type.

-or-

An empty array of type Type, if no types are nested within the current Type.

Remarks

This method is for access to managed classes from unmanaged code, and should not be called from managed code.

The Type.GetNestedTypes method returns all the types nested within the current Type.

Applies to

GetNestedTypes(BindingFlags)

Provides COM objects with version-independent access to the GetNestedTypes(BindingFlags) method, and searches for the types nested within the current Type, using the specified binding constraints.

public:
 cli::array <Type ^> ^ GetNestedTypes(System::Reflection::BindingFlags bindingAttr);
public Type[] GetNestedTypes (System.Reflection.BindingFlags bindingAttr);
abstract member GetNestedTypes : System.Reflection.BindingFlags -> Type[]
Public Function GetNestedTypes (bindingAttr As BindingFlags) As Type()

Parameters

bindingAttr
BindingFlags

A bitmask comprised of one or more BindingFlags that specify how the search is conducted.

-or-

Zero, to return null.

Returns

Type[]

An array of Type objects representing all the types nested within the current Type that match the specified binding constraints.

-or-

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.

Remarks

This method is for access to managed classes from unmanaged code, and should not be called from managed code.

Applies to