Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
IgnoreNullValues isn't for deserialization
  • Loading branch information
tdykstra authored Mar 24, 2021
commit f8fe2b0bb40c60ef92098c0c26275dbd176bf6a6
6 changes: 3 additions & 3 deletions xml/System.Text.Json/JsonSerializerOptions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -356,9 +356,9 @@ For more information, see [How to write custom converters for JSON serialization
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a value that determines whether <see langword="null" /> values are ignored during serialization and deserialization. The default value is <see langword="false" />.</summary>
<summary>Gets or sets a value that determines whether <see langword="null" /> values are ignored during serialization. The default value is <see langword="false" />.</summary>
<value>
<see langword="true" /> to ignore null values during serialization and deserialization; otherwise, <see langword="false" />.</value>
<see langword="true" /> to ignore null values during serialization; otherwise, <see langword="false" />.</value>
<remarks>
<format type="text/markdown"><![CDATA[

Expand All @@ -368,7 +368,7 @@ For more information, see [How to ignore properties](/dotnet/standard/serializat

]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">This property was set after serialization or deserialization has occurred.
<exception cref="T:System.InvalidOperationException">This property was set after serialization has occurred.

-or-

Expand Down