Class TypeResolver
Resolves a System.Type by name.
Inherited Members
Namespace: Tangosol.Util
Assembly: Coherence.dll
Syntax
public class TypeResolver
Remarks
It resolves type by either loading it directly from the assembly (if one is specified within a type name), or by iterating over all of the loaded assemblies and trying to find the type.
Methods
Resolve(string)
Gets a System.Type for the typeName
supplied as parameter.
Declaration
public static Type Resolve(string typeName)
Parameters
Type | Name | Description |
---|---|---|
string | typeName | The name of a System.Type to resolve. |
Returns
Type | Description |
---|---|
Type | System.Type instance. |
Exceptions
Type | Condition |
---|---|
TypeLoadException | If the |