Module.GetTypes Method
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Overridable Function GetTypes As Type() 'Usage Dim instance As Module Dim returnValue As Type() returnValue = instance.GetTypes
public Type[] GetTypes ()
public function GetTypes () : Type[]
Return Value
An array of type Type containing types defined within the module that is reflected by this instance.ReflectionTypeLoadException is a special load exception. The ReflectionTypeLoadException.Types property contains the array of types that were defined in the module and were loaded. This array may contain some null values. The ReflectionTypeLoadException.LoaderExceptions property is an array of exceptions that represent the exceptions that were thrown by the loader. The holes in the class array line up with the exceptions.
For example, if the class initializers of one of the classes throws an exception while it is being loaded, a TargetInvocationException is stored in the corresponding element of the LoaderExceptions array.
- ReflectionPermission Reflection permission for the current module.
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.