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: sdk/tables/Azure.Data.Tables/src/TableClient.cs
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1543,8 +1543,10 @@ public virtual Response SetAccessPolicy(IEnumerable<TableSignedIdentifier> table
1543
1543
/// <returns><see cref="Response{T}"/> containing a <see cref="IReadOnlyList{T}"/> of <see cref="Response"/>.
1544
1544
/// Each sub-response in the collection corresponds to the <see cref="TableTransactionAction"/> provided to the <paramref name="transactionActions"/> parameter at the same index position.
1545
1545
/// Each response can be inspected for details for its corresponding table operation, such as the <see cref="Response.Headers"/> property containing the <see cref="ResponseHeaders.ETag"/></returns>
1546
-
/// <exception cref="RequestFailedException"/> if the batch transaction fails./>
1547
-
/// <exception cref="InvalidOperationException"/> if the batch has been previously submitted.
1546
+
/// <exception cref="RequestFailedException"> Thrown when the batch transaction operation fails.</exception>
1547
+
/// <exception cref="ArgumentNullException"> Thrown when <paramref name="transactionActions"/> is <c>null</c>.</exception>
1548
+
/// <exception cref="InvalidOperationException">Thrown if <paramref name="transactionActions"/> contains no items.</exception>
1549
+
/// <exception cref="InvalidOperationException"> Thrown if the batch has been previously submitted.</exception>
/// <returns><see cref="Response{T}"/> containing a <see cref="IReadOnlyList{T}"/> of <see cref="Response"/>.
1561
1563
/// Each sub-response in the collection corresponds to the <see cref="TableTransactionAction"/> provided to the <paramref name="transactionActions"/> parameter at the same index position.
1562
1564
/// Each response can be inspected for details for its corresponding table operation, such as the <see cref="Response.Headers"/> property containing the <see cref="ResponseHeaders.ETag"/></returns>
1563
-
/// <exception cref="RequestFailedException"/> if the batch transaction fails./>
1564
-
/// <exception cref="InvalidOperationException"/> if the batch has been previously submitted.
1565
+
/// <exception cref="RequestFailedException"> Thrown when the batch transaction operation fails.</exception>
1566
+
/// <exception cref="ArgumentNullException"> Thrown when <paramref name="transactionActions"/> is <c>null</c>.</exception>
1567
+
/// <exception cref="InvalidOperationException">Thrown when <paramref name="transactionActions"/> contains no items.</exception>
1568
+
/// <exception cref="InvalidOperationException"> Thrown if the batch has been previously submitted.</exception>
0 commit comments