From f9b3330b5ee4c14fc2df985bd83efbb31634b052 Mon Sep 17 00:00:00 2001 From: Tom Dykstra Date: Mon, 25 Jan 2021 14:02:24 -0800 Subject: [PATCH] Custom collections serialization note --- .../system-text-json-supported-collection-types.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/standard/serialization/system-text-json-supported-collection-types.md b/docs/standard/serialization/system-text-json-supported-collection-types.md index 509a785716cb4..94a7f98b47b25 100644 --- a/docs/standard/serialization/system-text-json-supported-collection-types.md +++ b/docs/standard/serialization/system-text-json-supported-collection-types.md @@ -1,7 +1,7 @@ --- title: "Supported collection types in System.Text.Json" description: "Learn which collection types are supported for serialization by the APIs in the System.Text.Json namespace." -ms.date: 01/06/2021 +ms.date: 01/25/2021 no-loc: [System.Text.Json] ms.topic: reference zone_pivot_groups: dotnet-version @@ -225,7 +225,7 @@ The following sections are organized by namespace and show which types are suppo Any collection type that isn't in one of the preceding namespaces is considered a custom collection. Such types include user-defined types and types defined by ASP.NET Core. For example, is in this group. -All custom collections (everything that derives from `IEnumerable`) are supported for serialization, as long as their element types are supported. +All custom collections (everything that derives from `IEnumerable`) are supported for serialization, as long as their element types are supported. Only the items of the collection are serialized, not the properties or fields of the collection type. ### Custom collections with deserialization support