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/Utf8JsonReader.xml
+16-8Lines changed: 16 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -240,11 +240,19 @@ in more data asynchronously before continuing with a new instance of the <xref:S
240
240
</ReturnValue>
241
241
<Parameters />
242
242
<Docs>
243
-
<summary>Parses the current JSON token value from the source and decodes the base 64 encoded JSON string as bytes.</summary>
244
-
<returns>To be added.</returns>
243
+
<summary>Parses the current JSON token value from the source and decodes the base 64 encoded JSON string as a byte array.</summary>
244
+
<returns>The byte array that represents the current JSON token value.</returns>
245
245
<remarks>To be added.</remarks>
246
-
<exceptioncref="T:System.InvalidOperationException">Thrown if trying to get the value of a JSON token that is not a <seecref="F:System.Text.Json.JsonTokenType.String" />. <seealsocref="P:System.Text.Json.Utf8JsonReader.TokenType" />.</exception>
247
-
<exceptioncref="T:System.FormatException">Thrown when the JSON string contains data outside of the expected base 64 range, or if it contains invalid/more than two padding characters, or is incomplete (i.e. the JSON string length is not a multiple of 4).</exception>
246
+
<exceptioncref="T:System.InvalidOperationException">The type of the JSON token is not a <seecref="F:System.Text.Json.JsonTokenType.String" />.</exception>
247
+
<exceptioncref="T:System.FormatException">The JSON string contains data outside of the expected base 64 range.
248
+
249
+
- or -
250
+
251
+
The JSON string contains invalid padding characters or more than two padding characters.
252
+
253
+
- or -
254
+
255
+
The JSON string is incomplete; that is, the JSON string length is not a multiple of 4.</exception>
248
256
</Docs>
249
257
</Member>
250
258
<MemberMemberName="GetComment">
@@ -264,10 +272,10 @@ in more data asynchronously before continuing with a new instance of the <xref:S
264
272
</ReturnValue>
265
273
<Parameters />
266
274
<Docs>
267
-
<summary>Parses the current JSON token value from the source as a comment, transcoded as a <seecref="T:System.String" />.</summary>
268
-
<returns>To be added.</returns>
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>
269
277
<remarks>To be added.</remarks>
270
-
<exceptioncref="T:System.InvalidOperationException">Thrown if trying to get the value of the JSON token that is not a comment. <seealsocref="P:System.Text.Json.Utf8JsonReader.TokenType" />.</exception>
278
+
<exceptioncref="T:System.InvalidOperationException">The JSON token that is not a comment.</exception>
271
279
</Docs>
272
280
</Member>
273
281
<MemberMemberName="GetDateTime">
@@ -1299,4 +1307,4 @@ Otherwise, the token value must be accessed from <xref:System.Text.Json.Utf8Json
0 commit comments