Skip to content

Commit c4bed8b

Browse files
committed
Update XML doc
1 parent 8dfd95a commit c4bed8b

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

src/libraries/System.Text.Json/src/System/Text/Json/Serialization/IJsonOnDeserialized.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
namespace System.Text.Json.Serialization
55
{
66
/// <summary>
7-
/// Specifies that the JSON object should have its <see cref="OnDeserialized"/> method called
8-
/// after deserialization occurs.
7+
/// Specifies that the JSON type should have its <see cref="OnDeserialized"/> method called after deserialization occurs.
98
/// </summary>
109
/// <remarks>
11-
/// Only JSON objects using the default custom converter support this behavior; collections, dictionaries and values do not.
10+
/// This behavior is only supported on types representing JSON objects.
11+
/// Types that have a custom converter or represent collections or values do not support this behavior.
1212
/// </remarks>
1313
public interface IJsonOnDeserialized
1414
{

src/libraries/System.Text.Json/src/System/Text/Json/Serialization/IJsonOnDeserializing.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
namespace System.Text.Json.Serialization
55
{
66
/// <summary>
7-
/// Specifies that the JSON object should have its <see cref="OnDeserializing"/> method called
8-
/// before deserialization occurs.
7+
/// Specifies that the type should have its <see cref="OnDeserializing"/> method called before deserialization occurs.
98
/// </summary>
109
/// <remarks>
11-
/// Only JSON objects using the default custom converter support this behavior; collections, dictionaries and values do not.
10+
/// This behavior is only supported on types representing JSON objects.
11+
/// Types that have a custom converter or represent collections or values do not support this behavior.
1212
/// </remarks>
1313
public interface IJsonOnDeserializing
1414
{

src/libraries/System.Text.Json/src/System/Text/Json/Serialization/IJsonOnSerialized.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
namespace System.Text.Json.Serialization
55
{
66
/// <summary>
7-
/// Specifies that the JSON object should have its <see cref="OnSerialized"/> method called
8-
/// after serialization occurs.
7+
/// Specifies that the type should have its <see cref="OnSerialized"/> method called after serialization occurs.
98
/// </summary>
109
/// <remarks>
11-
/// Only JSON objects using the default custom converter support this behavior; collections, dictionaries and values do not.
10+
/// This behavior is only supported on types representing JSON objects.
11+
/// Types that have a custom converter or represent collections or values do not support this behavior.
1212
/// </remarks>
1313
public interface IJsonOnSerialized
1414
{

src/libraries/System.Text.Json/src/System/Text/Json/Serialization/IJsonOnSerializing.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
namespace System.Text.Json.Serialization
55
{
66
/// <summary>
7-
/// Specifies that the JSON object should have its <see cref="OnSerializing"/> method called
8-
/// before serialization occurs.
7+
/// Specifies that the type should have its <see cref="OnSerializing"/> method called before serialization occurs.
98
/// </summary>
109
/// <remarks>
11-
/// Only JSON objects using the default custom converter support this behavior; collections, dictionaries and values do not.
10+
/// This behavior is only supported on types representing JSON objects.
11+
/// Types that have a custom converter or represent collections or values do not support this behavior.
1212
/// </remarks>
1313
public interface IJsonOnSerializing
1414
{

0 commit comments

Comments
 (0)