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.LoaderExceptions

Retrieves the array of exceptions thrown by the class loader.

[Visual Basic]
Public ReadOnly Property LoaderExceptions As Exception ()
[C#]
public Exception[] LoaderExceptions {get;}
[C++]
public: __property Exception* get_LoaderExceptions();
[JScript]
public function get LoaderExceptions() : Exception[];

Property Value

Read-only. An Exception array containing the exceptions thrown by the class loader. The null values in the classes array of this instance line up with the exceptions in this array.

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