Skip to content
Merged
Show file tree
Hide file tree
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
Prev Previous commit
Next Next commit
save interim changes
  • Loading branch information
mairaw committed Mar 9, 2019
commit 54e4a0b85110e4ad197e63298b38f931ff3e8cd9
2 changes: 1 addition & 1 deletion xml/System.Text.Json/JsonCommentHandling.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</ReturnValue>
<MemberValue>1</MemberValue>
<Docs>
<summary>Allow comments within the JSON input and treat them as a valid token. While reading, the caller will be able to access the comment values.</summary>
<summary>Allows comments within the JSON input and treat them as a valid token. While reading, the caller will be able to access the comment values.</summary>
</Docs>
</Member>
<Member MemberName="Disallow">
Expand Down
2 changes: 1 addition & 1 deletion xml/System.Text.Json/JsonReaderState.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<param name="maxDepth">The maximum depth allowed when reading JSON. This is an optional parameter and its default value is 64. Reading past this depth throws a <exception cref="T:System.Text.Json.JsonReaderException" /></param>
<param name="options">The customized behavior of the <see cref="T:System.Text.Json.Utf8JsonReader" /> that is different from the JSON RFC (for example, how to handle comments).
This is an optional parameter and by default, the <see cref="T:System.Text.Json.Utf8JsonReader" /> object follows the JSON RFC strictly (that is, comments within the JSON are invalid).</param>
<summary>Initializes a new instance of the <see cref="T:System.Text.Json.JsonReaderState" /> class.</summary>
<summary>Initializes a new instance of the <see cref="T:System.Text.Json.JsonReaderState" /> struct.</summary>
<remarks>
An instance of this state must be passed to the <see cref="T:System.Text.Json.Utf8JsonReader" /> constructor with the JSON data.
Unlike the <see cref="T:System.Text.Json.Utf8JsonReader" />, which is a ref struct, the state can survive across async/await boundaries and hence this type is required to provide support for reading in more data asynchronously before continuing with a new instance of the <see cref="T:System.Text.Json.Utf8JsonReader" /> class.
Expand Down