.NET/Link API Version 1.7 USE FRAMES

TypeLoader.GetType Method (String, Assembly, Boolean)

Searches for the type in the named assembly.

[Visual Basic]
Overloads Public Shared Function GetType( _
   ByVal typeName As String, _
   ByVal assembly As Assembly, _
   ByVal throwOnError As Boolean _
) As Type
[C#]
public static Type GetType(
   string typeName,
   Assembly assembly,
   bool throwOnError
);

Parameters

typeName
assembly
throwOnError

Remarks

If throwOnError is true, it will always throw if the type cannot be found or other errors occur (e.g., SecurityException, BadImageFormatException, etc.) Like Type.GetType(), it can still throw in unusual circumstances even if throwOnError is false.

See Also

TypeLoader Class | Wolfram.NETLink Namespace | TypeLoader.GetType Overload List