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
/// Helper methods for handling read/write errors on data items, including checking for errors and throwing exceptions with detailed information about the failed items.
11
+
/// </summary>
12
+
publicstaticclassReadWriteErrorHelpers
13
+
{
14
+
/// <summary>
15
+
/// Checks if any of the read/write operations returned an error code other than Success.
16
+
/// </summary>
17
+
/// <param name="results">The results of the read/write operations.</param>
18
+
/// <returns>True if any operation returned an error code other than Success; otherwise, false.</returns>
/// Throws an AggregateException containing a DataItemReadWriteException for each data item that returned an error code other than Success.
53
+
/// </summary>
54
+
/// <param name="operation">The operation for which the error occurred.</param>
55
+
/// <param name="dataItems">The data items involved in the operations.</param>
56
+
/// <param name="results">The results of the read/write operations.</param>
57
+
/// <exception cref="AggregateException">Thrown with a DataItemReadWriteException for each data item that returned an error code other than Success.</exception>
0 commit comments