Skip to content
Merged
Changes from all commits
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
6 changes: 4 additions & 2 deletions xml/System.Text.Json/JsonSerializerOptions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -710,8 +710,10 @@ For more information, see [How to ignore properties with System.Text.Json](/dotn
<summary>Gets or sets a value that indicates whether fields are handled during serialization and deserialization.
The default value is <see langword="false" />.</summary>
<value>
<see langword="true" /> if fields are included during serialization; otherwise, <see langword="false" />.</value>
<remarks>To be added.</remarks>
<see langword="true" /> if public fields are included during serialization; otherwise, <see langword="false" />.</value>
<remarks>This flag only enables serialization for public fields, as is the case for properties.
Private members need to be opted into individually using the <see cref="T:System.Text.Json.Serialization.JsonIncludeAttribute" /> attribute.
</remarks>
<exception cref="T:System.InvalidOperationException">This property is set after serialization or deserialization has occurred.</exception>
</Docs>
</Member>
Expand Down