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
/// Attempts to parse the specified <paramref name="json"/> string into an instance of <typeparamref name="T"/>.
147
+
/// </summary>
148
+
/// <typeparam name="T">The type of the output object.</typeparam>
149
+
/// <param name="json">The JSON string to parse.</param>
150
+
/// <param name="result">When this method returns, holds the parsed <see cref="JToken"/> if successful; otherwise, the default value of <typeparamref name="T"/>.</param>
151
+
/// <returns><c>true</c> if the parsing was successful; otherwise, <c>false</c>.</returns>
/// Attempts to parse the specified <paramref name="json"/> string into an instance of <typeparamref name="T"/>.
158
+
/// </summary>
159
+
/// <typeparam name="T">The type of the output object.</typeparam>
160
+
/// <param name="json">The JSON string to parse.</param>
161
+
/// <param name="callback">A callback function used for converting a <see cref="JToken"/> into an instance of <typeparamref name="T"/>.</param>
162
+
/// <param name="result">When this method returns, holds the parsed <see cref="JToken"/> if successful; otherwise, the default value of <typeparamref name="T"/>.</param>
163
+
/// <returns><c>true</c> if the parsing was successful; otherwise, <c>false</c>.</returns>
/// Attempts to parse the specified <paramref name="json"/> string into an instance of <typeparamref name="T"/>.
180
+
/// </summary>
181
+
/// <typeparam name="T">The type of the output object.</typeparam>
182
+
/// <param name="json">The JSON string to parse.</param>
183
+
/// <param name="result">When this method returns, holds the parsed <see cref="JObject"/> if successful; otherwise, the default value of <typeparamref name="T"/>.</param>
184
+
/// <returns><c>true</c> if the parsing was successful; otherwise, <c>false</c>.</returns>
/// Attempts to parse the specified <paramref name="json"/> string into an instance of <typeparamref name="T"/>.
191
+
/// </summary>
192
+
/// <typeparam name="T">The type of the output object.</typeparam>
193
+
/// <param name="json">The JSON string to parse.</param>
194
+
/// <param name="callback">A callback function used for converting a <see cref="JObject"/> into an instance of <typeparamref name="T"/>.</param>
195
+
/// <param name="result">When this method returns, holds the parsed <see cref="JObject"/> if successful; otherwise, the default value of <typeparamref name="T"/>.</param>
196
+
/// <returns><c>true</c> if the parsing was successful; otherwise, <c>false</c>.</returns>
/// Attempts to parse the specified <paramref name="json"/> string into an array of <typeparamref name="T"/>.
236
+
/// </summary>
237
+
/// <typeparam name="T">The type of the output array.</typeparam>
238
+
/// <param name="json">The JSON string to parse.</param>
239
+
/// <param name="callback">A callback function used for converting the individual <see cref="JObject"/> of the parsed array into instances of <typeparamref name="T"/>.</param>
240
+
/// <param name="result">When this method returns, holds the parsed array of <typeparamref name="T"/> if successful; otherwise, <c>null</c>.</param>
241
+
/// <returns><c>true</c> if the parsing was successful; otherwise, <c>false</c>.</returns>
0 commit comments