SimpleTypeResolver.ResolveType(String) Method

Definition

Returns the Type of the specified name.

public:
 override Type ^ ResolveType(System::String ^ id);
public override Type ResolveType (string id);
override this.ResolveType : string -> Type
Public Overrides Function ResolveType (id As String) As Type

Parameters

id
String

The assembly-qualified name of the managed type.

Returns

A Type object that has the specified name, if found; otherwise, null.

Remarks

The ResolveType method calls the Type.GetType method to resolve the type.

Applies to