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 Constructor

Initializes an instance of the ReflectionTypeLoadException class with the given classes and their associated exceptions.

[Visual Basic]
Public Sub New( _
   ByVal classes() As Type, _
   ByVal exceptions() As Exception _
)
[C#]
public ReflectionTypeLoadException(
   Type[] classes,
   Exception[] exceptions
);
[C++]
public: ReflectionTypeLoadException(
   Type* classes[],
   Exception* exceptions[]
);
[JScript]
public function ReflectionTypeLoadException(
   classes : Type[],
   exceptions : Exception[]
);

Parameters

classes
An array containing the classes that were defined in the module and loaded. This array may contain some null values.
exceptions
An array containing the exceptions that were thrown by the class loader. The null values in the classes array line up with the exceptions in this exceptions array.

See Also

ReflectionTypeLoadException Class | ReflectionTypeLoadException Members | System.Reflection Namespace