This documentation is archived and is not being maintained.
Assembly::GetExportedTypes Method
Visual Studio 2008
Gets the public types defined in this assembly that are visible outside the assembly.
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: array<System::Type>An array of Type objects that represent the types defined in this assembly that are visible outside the assembly.
Implements
_Assembly::GetExportedTypes()The following code sample defines a number of classes with various access levels, and calls GetExportedTypes to display the ones that are visible from outside the assembly.
using namespace System; using namespace System::Reflection; namespace ExportedClassExample { public ref class Example sealed { private: Example() { } public: void static EnumerateExportedTypes() { for each (Type^ exportedType in Assembly::GetExecutingAssembly()->GetExportedTypes()) { Console::WriteLine(exportedType); } } }; public ref class PublicClass { public: ref class PublicNestedClass { }; protected: ref class ProtectedNestedClass { }; internal: ref class FriendNestedClass { }; private: ref class PrivateNestedClass { }; }; ref class FriendClass { public: ref class PublicNestedClass { }; protected: ref class ProtectedNestedClass { }; internal: ref class FriendNestedClass { }; private: ref class PrivateNestedClass { }; }; } int main() { ExportedClassExample::Example::EnumerateExportedTypes(); return 0; }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: