Show / Hide Table of Contents

Class TypeResolver

Resolves a System.Type by name.

Inheritance
object
TypeResolver
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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 typeName could not be resolved to a Type.

In this article
Back to top Copyright © 2000, 2024, Oracle and/or its affiliates.