<PackageReference Include="System.Text.Json" Version="11.0.0-preview.2.26159.112" />

System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues<TCollection>

public sealed class JsonCollectionInfoValues<TCollection>
Provides serialization metadata about a collection type.
namespace System.Text.Json.Serialization.Metadata { public sealed class JsonCollectionInfoValues<TCollection> { public Func<TCollection> ObjectCreator { get; set; } public JsonTypeInfo KeyInfo { get; set; } public JsonTypeInfo ElementInfo { get; set; } public JsonNumberHandling NumberHandling { get; set; } public Action<Utf8JsonWriter, TCollection> SerializeHandler { get; set; } public JsonCollectionInfoValues(); } }