ModuleBuilder.GetTypes Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Returns all the classes defined within this module.

Namespace:  System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public Overrides Function GetTypes As Type()
public override Type[] GetTypes()

Return Value

Type: array<System.Type[]
An array that contains the classes defined within the module that is reflected by this instance.

Exceptions

Exception Condition
ReflectionTypeLoadException

One or more classes in a module could not be loaded.

SecurityException

The caller does not have the required permission.

Remarks

ReflectionTypeLoadException is a special class load exception. The ReflectionTypeLoadException.Types property contains the array of classes that were defined in the module and loaded. This array can contain some null values. The ReflectionTypeLoadException.LoaderExceptions property is an array of exceptions that represent the exceptions that were thrown by the class 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.

Version Information

Silverlight

Supported in: 5, 4, 3

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.