NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Type.GetNestedTypes

Gets the types nested within the current Type.

Overload List

When implemented by a derived class, searches for the types nested within the current Type, using the specified binding constraints.

[Visual Basic] Overloads MustOverride Public Function GetNestedTypes(BindingFlags) As Type ()
[C#] public abstract Type[] GetNestedTypes(BindingFlags);
[C++] public: virtual Type* GetNestedTypes(BindingFlags) [] = 0;
[JScript] public abstract function GetNestedTypes(BindingFlags) : Type[];

Returns all the types nested within the current Type.

[Visual Basic] Overloads Public Function GetNestedTypes() As Type ()
[C#] public Type[] GetNestedTypes();
[C++] public: Type* GetNestedTypes() [];
[JScript] public function GetNestedTypes() : Type[];

See Also

Type Class | Type Members | System Namespace