JsonMetadataServices.CreateObjectInfo<T> 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
为复杂类或结构创建元数据。
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> 类或结构的 实例。
例外
options
或 objectInfo
为 null
。
注解
此 API 供 System.Text.Json 源生成器的输出使用,不应直接调用。