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[]
Not applicable.
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.
Note: |
|---|
| If a type has been forwarded to another assembly, it is not included in the returned array. For information on type forwarding, see Type Forwarding in the Common Language Runtime. |
- ReflectionPermission Reflection permission for the current module.
Windows 98, Windows Server 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 Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.
Note: