System.Text.Json.Serialization.Metadata.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();
}
}