Edit

Share via


JsonMetadataServices.CreateObjectInfo<T> Method

Definition

Creates metadata for a complex class or struct.

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)

Type Parameters

T

The type of the class or struct.

Parameters

options
JsonSerializerOptions

The JsonSerializerOptions to use for serialization and deserialization.

objectInfo
JsonObjectInfoValues<T>

Provides serialization metadata about an object type with constructors, properties, and fields.

Returns

A JsonTypeInfo<T> instance representing the class or struct.

Exceptions

options or objectInfo is null.

Remarks

This API is for use by the output of the System.Text.Json source generator and should not be called directly.

Applies to