You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: xml/System.Text.Json.Serialization/JsonExtensionDataAttribute.xml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@
19
19
</Attribute>
20
20
</Attributes>
21
21
<Docs>
22
-
<summary>When placed on a property of type <seecref="T:System.Collections.Generic.IDictionary`2" />, provides that any properties that do not have a matching member are added to that dictionary during deserialization and written during serialization.</summary>
22
+
<summary>When placed on a property of type <seecref="T:System.Collections.Generic.IDictionary`2" />, any properties that do not have a matching member are added to that dictionary during deserialization and written during serialization.</summary>
23
23
<remarks>
24
24
<formattype="text/markdown">
25
25
<![CDATA[
@@ -32,7 +32,7 @@ During deserialization, when using <xref:System.Object>, a "null" JSON value is
32
32
33
33
During serialization, the name of the extension data property is not included in the JSON; the data contained within the extension data is serialized as properties of the JSON object.
34
34
35
-
If there is more than one extension property on a type, or it the property is not of the correct type, an <xref:System.InvalidOperationException> is thrown during the first serialization or deserialization of that type.
35
+
If there is more than one property on a type with this extension data attribute, or if the property itself is not of the correct <see cref="T:System.Collections.Generic.IDictionary`2" /> type, an <xref:System.InvalidOperationException> is thrown during the first serialization or deserialization of that type.
Copy file name to clipboardExpand all lines: xml/System.Text.Json/Utf8JsonReader.xml
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -273,9 +273,9 @@ The JSON string is incomplete; that is, the JSON string length is not a multiple
273
273
<Parameters />
274
274
<Docs>
275
275
<summary>Parses the current JSON token value from the source as a comment, transcoded it as a <seecref="T:System.String" />.</summary>
276
-
<returns>The comment that represnets the current JSON token value.</returns>
276
+
<returns>The comment that represents the current JSON token value.</returns>
277
277
<remarks>To be added.</remarks>
278
-
<exceptioncref="T:System.InvalidOperationException">The JSON token that is not a comment.</exception>
278
+
<exceptioncref="T:System.InvalidOperationException">The JSON token is not a comment.</exception>
279
279
</Docs>
280
280
</Member>
281
281
<MemberMemberName="GetDateTime">
@@ -667,8 +667,8 @@ For input data within a `ReadOnlySpan<byte>`, this always returns `false`. For i
667
667
<ReturnType>System.Boolean</ReturnType>
668
668
</ReturnValue>
669
669
<Docs>
670
-
<summary>Gets the mode of this instance of the <seecref="T:System.Text.Json.Utf8JsonReader" />.</summary>
671
-
<value><seelangword="true" /> if the reader was constructed with the input span containing the entire data to process. <seelangword="false" /> if the reader was constructed with an input span that may contain partial data with more data to follow.</value>
670
+
<summary>Gets the mode of this instance of the <seecref="T:System.Text.Json.Utf8JsonReader" /> which indicates whether all the JSON data was provided or there is more data to come.</summary>
671
+
<value><seelangword="true" /> if the reader was constructed with the input span or sequence containing the entire JSON data to process. <seelangword="false" /> if the reader was constructed with an input span or sequence that may contain partial JSON data with more data to follow.</value>
672
672
<remarks>To be added.</remarks>
673
673
</Docs>
674
674
</Member>
@@ -844,7 +844,7 @@ If the look up text is invalid or incomplete UTF-16 text (such as unpaired surro
844
844
<ReturnType>System.Int64</ReturnType>
845
845
</ReturnValue>
846
846
<Docs>
847
-
<summary>Gets the index that the last processed JSON token within the given UTF-8 encoded input text starts at, skipping any white space.</summary>
847
+
<summary>Gets the index that the last processed JSON token starts at (within the given UTF-8 encoded input text), skipping any white space.</summary>
848
848
<value>The starting index of the last processed JSON token within the given UTF-8 encoded input text.</value>
849
849
<remarks>
850
850
<formattype="text/markdown">
@@ -901,7 +901,7 @@ For comments, this value points to before the first comment delimiter (that is,
<paramname="value">When the method returns, a byte array that contains the base 64-encoded JSON string if the method succeeds.</param>
904
+
<paramname="value">If the method succeeds, a byte array that contains the base 64-encoded JSON string.</param>
905
905
<summary>Tries to parse the current JSON token value from the source and decodes the base 64 encoded JSON string as a byte array.</summary>
906
906
<returns><seelangword="true" /> if the entire token value is encoded as valid base 64 text and can be successfully decoded; <seelangword="false" /> otherwise.</returns>
0 commit comments