SystemInfo GetTypeFromString Method (Assembly, String, Boolean, Boolean)Apache log4net™ SDK Documentation
Loads the type specified in the type string.

Namespace: log4net.Util
Assembly: log4net (in log4net.dll) Version: 1.2.15.0 (1.2.15.0)
Syntax

public static Type GetTypeFromString(
	Assembly relativeAssembly,
	string typeName,
	bool throwOnError,
	bool ignoreCase
)

Parameters

relativeAssembly
Type: OnlineSystem.Reflection Assembly
An assembly to load the type from.
typeName
Type: OnlineSystem String
The name of the type to load.
throwOnError
Type: OnlineSystem Boolean
Flag set to true to throw an exception if the type cannot be loaded.
ignoreCase
Type: OnlineSystem Boolean
true to ignore the case of the type name; otherwise, false

Return Value

Type: OnlineType
The type loaded or null if it could not be loaded.
Remarks

If the type name is fully qualified, i.e. if contains an assembly name in the type name, the type will be loaded from the system using GetType(string, bool).

If the type name is not fully qualified it will be loaded from the specified assembly. If the type is not found in the assembly then all the loaded assemblies will be searched for the type.

See Also