JavaScriptTypeResolver.ResolveType(String) 方法

定义

当在派生类中重写时,返回与指定类型名称相关联的 Type 对象。

public:
 abstract Type ^ ResolveType(System::String ^ id);
public abstract Type ResolveType (string id);
abstract member ResolveType : string -> Type
Public MustOverride Function ResolveType (id As String) As Type

参数

id
String

托管类型的名称。

返回

Type

与指定类型名称相关联的 Type 对象。

注解

当类型解析程序与实例关联时 JavaScriptSerializer ,序列化程序将 ResolveType 在循环访问 json 字符串时使用方法,以确定 JSON 类型应转换为的特定托管类型。

实施者说明

给定一个字符串值,类型解析程序必须返回一个 Type 表示相应托管类型的对象。

适用于