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
@@ -114,7 +121,7 @@ public Response UpdateStatus(CancellationToken cancellationToken) =>
114
121
/// <returns>The last HTTP response received from the server, including the final result of the long-running operation.</returns>
115
122
/// <exception cref="RequestFailedException">Thrown if there's been any issues during the connection, or if the operation has completed with failures.</exception>
/// Periodically calls <see cref="UpdateStatusAsync(CancellationToken)"/> until the long-running operation completes. The interval
@@ -135,7 +142,7 @@ public async ValueTask<Response> WaitForCompletionResponseAsync(CancellationToke
135
142
/// <returns>The last HTTP response received from the server, including the final result of the long-running operation.</returns>
136
143
/// <exception cref="RequestFailedException">Thrown if there's been any issues during the connection, or if the operation has completed with failures.</exception>
/// Periodically calls <see cref="UpdateStatus(CancellationToken)"/> until the long-running operation completes.
@@ -155,7 +162,7 @@ public async ValueTask<Response> WaitForCompletionResponseAsync(TimeSpan polling
155
162
/// <returns>The last HTTP response received from the server, including the final result of the long-running operation.</returns>
156
163
/// <exception cref="RequestFailedException">Thrown if there's been any issues during the connection, or if the operation has completed with failures.</exception>
/// Periodically calls <see cref="UpdateStatus(CancellationToken)"/> until the long-running operation completes. The interval
@@ -176,9 +183,9 @@ public Response WaitForCompletionResponse(CancellationToken cancellationToken)
176
183
/// <returns>The last HTTP response received from the server, including the final result of the long-running operation.</returns>
177
184
/// <exception cref="RequestFailedException">Thrown if there's been any issues during the connection, or if the operation has completed with failures.</exception>
Copy file name to clipboardexpand all lines: sdk/core/Azure.Core/src/Shared/OperationInternalOfT.cs
+8-14
Original file line number
Diff line number
Diff line change
@@ -174,10 +174,7 @@ public T Value
174
174
/// <returns>The last HTTP response received from the server, including the final result of the long-running operation.</returns>
175
175
/// <exception cref="RequestFailedException">Thrown if there's been any issues during the connection, or if the operation has completed with failures.</exception>
/// Periodically calls <see cref="OperationInternalBase.UpdateStatusAsync(CancellationToken)"/> until the long-running operation completes. The interval
@@ -198,10 +195,7 @@ public async ValueTask<Response<T>> WaitForCompletionAsync(CancellationToken can
198
195
/// <returns>The last HTTP response received from the server, including the final result of the long-running operation.</returns>
199
196
/// <exception cref="RequestFailedException">Thrown if there's been any issues during the connection, or if the operation has completed with failures.</exception>
/// Periodically calls <see cref="OperationInternalBase.UpdateStatus(CancellationToken)"/> until the long-running operation completes.
@@ -220,10 +214,7 @@ public async ValueTask<Response<T>> WaitForCompletionAsync(TimeSpan pollingInter
220
214
/// <returns>The last HTTP response received from the server, including the final result of the long-running operation.</returns>
221
215
/// <exception cref="RequestFailedException">Thrown if there's been any issues during the connection, or if the operation has completed with failures.</exception>
/// Periodically calls <see cref="OperationInternalBase.UpdateStatus(CancellationToken)"/> until the long-running operation completes. The interval
@@ -244,8 +235,11 @@ public Response<T> WaitForCompletion(CancellationToken cancellationToken)
244
235
/// <returns>The last HTTP response received from the server, including the final result of the long-running operation.</returns>
245
236
/// <exception cref="RequestFailedException">Thrown if there's been any issues during the connection, or if the operation has completed with failures.</exception>
0 commit comments