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!

ReflectionTypeLoadException.Types

Retrieves the array of classes that were defined in the module, and loaded.

[Visual Basic]
Public ReadOnly Property Types As Type ()
[C#]
public Type[] Types {get;}
[C++]
public: __property Type* get_Types();
[JScript]
public function get Types() : Type[];

Property Value

Read-only. A Type array containing the classes that were defined in the module and loaded. This array may contain some null values.

Remarks

The LoaderExceptions property retrieves an array of Exceptions that is parallel to this Types array. This array will contain null values wherever reflection cannot load a class.

See Also

ReflectionTypeLoadException Class | ReflectionTypeLoadException Members | System.Reflection Namespace