TypeLoaderGetType(String, Assembly, Boolean) Method

Searches for the type in the named assembly.

Definition

Namespace: Wolfram.NETLink
Assembly: Wolfram.NETLink (in Wolfram.NETLink.dll) Version: 2.0.0.0
C#
public static Type GetType(
	string typeName,
	Assembly assembly,
	bool throwOnError
)

Parameters

typeName  String
assembly  Assembly
throwOnError  Boolean

Return Value

Type

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