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
/// A <see cref="RequestFailedException"/> will be thrown if
1001
1021
/// a failure occurs.
1022
+
/// If multiple failures occur, an <see cref="AggregateException"/> will be thrown,
1023
+
/// containing each failure instance.
1002
1024
/// </remarks>
1003
1025
[EditorBrowsable(EditorBrowsableState.Never)]
1004
1026
#pragma warning disable AZC0002// DO ensure all service methods, both asynchronous and synchronous, take an optional CancellationToken parameter called cancellationToken.
@@ -1062,6 +1084,8 @@ public virtual Response<BlobAppendInfo> AppendBlock(
1062
1084
/// <remarks>
1063
1085
/// A <see cref="RequestFailedException"/> will be thrown if
1064
1086
/// a failure occurs.
1087
+
/// If multiple failures occur, an <see cref="AggregateException"/> will be thrown,
1088
+
/// containing each failure instance.
1065
1089
/// </remarks>
1066
1090
[EditorBrowsable(EditorBrowsableState.Never)]
1067
1091
#pragma warning disable AZC0002// DO ensure all service methods, both asynchronous and synchronous, take an optional CancellationToken parameter called cancellationToken.
@@ -1112,6 +1136,8 @@ public virtual async Task<Response<BlobAppendInfo>> AppendBlockAsync(
1112
1136
/// <remarks>
1113
1137
/// A <see cref="RequestFailedException"/> will be thrown if
1114
1138
/// a failure occurs.
1139
+
/// If multiple failures occur, an <see cref="AggregateException"/> will be thrown,
1140
+
/// containing each failure instance.
1115
1141
/// </remarks>
1116
1142
public virtual Response<BlobAppendInfo>AppendBlock(
1117
1143
Streamcontent,
@@ -1155,6 +1181,8 @@ public virtual Response<BlobAppendInfo> AppendBlock(
1155
1181
/// <remarks>
1156
1182
/// A <see cref="RequestFailedException"/> will be thrown if
1157
1183
/// a failure occurs.
1184
+
/// If multiple failures occur, an <see cref="AggregateException"/> will be thrown,
1185
+
/// containing each failure instance.
1158
1186
/// </remarks>
1159
1187
public virtual async Task<Response<BlobAppendInfo>> AppendBlockAsync(
1160
1188
Streamcontent,
@@ -1207,6 +1235,8 @@ await AppendBlockInternal(
1207
1235
/// <remarks>
1208
1236
/// A <see cref="RequestFailedException"/> will be thrown if
1209
1237
/// a failure occurs.
1238
+
/// If multiple failures occur, an <see cref="AggregateException"/> will be thrown,
/// A <see cref="RequestFailedException"/> will be thrown if
1468
1502
/// a failure occurs.
1503
+
/// If multiple failures occur, an <see cref="AggregateException"/> will be thrown,
1504
+
/// containing each failure instance.
1469
1505
/// </remarks>
1470
1506
[EditorBrowsable(EditorBrowsableState.Never)]
1471
1507
#pragma warning disable AZC0002// DO ensure all service methods, both asynchronous and synchronous, take an optional CancellationToken parameter called cancellationToken.
@@ -1541,6 +1577,8 @@ public virtual Response<BlobAppendInfo> AppendBlockFromUri(
1541
1577
/// <remarks>
1542
1578
/// A <see cref="RequestFailedException"/> will be thrown if
1543
1579
/// a failure occurs.
1580
+
/// If multiple failures occur, an <see cref="AggregateException"/> will be thrown,
1581
+
/// containing each failure instance.
1544
1582
/// </remarks>
1545
1583
[EditorBrowsable(EditorBrowsableState.Never)]
1546
1584
#pragma warning disable AZC0002// DO ensure all service methods, both asynchronous and synchronous, take an optional CancellationToken parameter called cancellationToken.
0 commit comments