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
<paramname="typeToConvert">The type to convert.</param>
113
+
<summary>Create a converter for the specified type.</summary>
114
+
<returns>An instance of <seecref="T:System.Text.Json.Serialization.JsonConverter"/> of type T, where T is compatible with <paramrefname="typeToConvert"/>.</returns>
Copy file name to clipboardExpand all lines: xml/System.Text.Json/JsonElement.xml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -837,9 +837,9 @@ This method does not parse the contents of a JSON string value.
837
837
<ParameterName="index"Type="System.Int32" />
838
838
</Parameters>
839
839
<Docs>
840
-
<paramname="index">To be added.</param>
841
-
<summary>Gets the value at a specified index when the current value is an <seecref="F:System.Text.Json.JsonValueKind.Array" />.</summary>
842
-
<value>To be added.</value>
840
+
<paramname="index">The item index.</param>
841
+
<summary>Gets the value at the specified index if the current value is an <seecref="F:System.Text.Json.JsonValueKind.Array" />.</summary>
842
+
<value>The value at the specified index.</value>
843
843
<remarks>To be added.</remarks>
844
844
<exceptioncref="T:System.InvalidOperationException">This value's <seecref="P:System.Text.Json.JsonElement.ValueKind" /> is not <seecref="F:System.Text.Json.JsonValueKind.Array" />.</exception>
845
845
<exceptioncref="T:System.IndexOutOfRangeException"><paramrefname="index" /> is not in the range [0, <seecref="M:System.Text.Json.JsonElement.GetArrayLength" />()).</exception>
Copy file name to clipboardExpand all lines: xml/System.Text.Json/JsonEncodedText.xml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -108,7 +108,7 @@ This type can be used to cache and store known strings used for writing JSON ahe
108
108
<Docs>
109
109
<paramname="value">The value to be transformed as JSON encoded text.</param>
110
110
<summary>Encodes the string text value as a JSON string.</summary>
111
-
<returns>To be added.</returns>
111
+
<returns>The string encoded as a JSON string.</returns>
112
112
<remarks>To be added.</remarks>
113
113
<exceptioncref="T:System.ArgumentNullException"><paramrefname="value" /> is <seelangword="null" />.</exception>
114
114
<exceptioncref="T:System.ArgumentException"><paramrefname="value" /> is too large or contains invalid UTF-16 characters.</exception>
@@ -154,7 +154,7 @@ This type can be used to cache and store known strings used for writing JSON ahe
154
154
<ParameterName="obj"Type="System.Object" />
155
155
</Parameters>
156
156
<Docs>
157
-
<paramname="obj">To be added.</param>
157
+
<paramname="obj">The object to compare to this instance.</param>
158
158
<summary>Determines whether this instance and a specified object, which must also be a <seecref="T:System.Text.Json.JsonEncodedText" /> instance, have the same value.</summary>
159
159
<returns><seelangword="true" /> if the current instance and <paramrefname="obj" /> are equal; otherwise, <seelangword="false" />.</returns>
160
160
<remarks>
@@ -190,7 +190,7 @@ If `obj` is `null`, the method returns `false`.
<paramname="other">The object to compare to this instance.</param>
194
194
<summary>Determines whether this instance and another specified <seecref="T:System.Text.Json.JsonEncodedText" /> instance have the same value.</summary>
195
195
<returns><seelangword="true" /> if this instance and <paramrefname="other" /> have the same value; otherwise, <seelangword="false" />.</returns>
0 commit comments