JsonMetadataServices.CreateObjectInfo<T> 方法

定义

为复杂类或结构创建元数据。

public:
generic <typename T>
 static System::Text::Json::Serialization::Metadata::JsonTypeInfo<T> ^ CreateObjectInfo(System::Text::Json::JsonSerializerOptions ^ options, System::Text::Json::Serialization::Metadata::JsonObjectInfoValues<T> ^ objectInfo);
public static System.Text.Json.Serialization.Metadata.JsonTypeInfo<T> CreateObjectInfo<T> (System.Text.Json.JsonSerializerOptions options, System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<T> objectInfo);
static member CreateObjectInfo : System.Text.Json.JsonSerializerOptions * System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<'T> -> System.Text.Json.Serialization.Metadata.JsonTypeInfo<'T>
Public Shared Function CreateObjectInfo(Of T) (options As JsonSerializerOptions, objectInfo As JsonObjectInfoValues(Of T)) As JsonTypeInfo(Of T)

类型参数

T

类或结构的类型。

参数

options
JsonSerializerOptions

JsonSerializerOptions要用于序列化和反序列化的 。

objectInfo
JsonObjectInfoValues<T>

使用构造函数、属性和字段提供有关对象类型的序列化元数据。

返回

表示 JsonTypeInfo<T> 类或结构的 实例。

例外

optionsobjectInfonull

注解

此 API 供 System.Text.Json 源生成器的输出使用,不应直接调用。

适用于