DeleteCertificateOperation.WaitForCompletionAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
WaitForCompletionAsync(CancellationToken) |
Periodically calls the server till the long-running operation completes. |
WaitForCompletionAsync(TimeSpan, CancellationToken) |
Periodically calls the server till the long-running operation completes. |
WaitForCompletionAsync(CancellationToken)
Periodically calls the server till the long-running operation completes.
public override System.Threading.Tasks.ValueTask<Azure.Response<Azure.Security.KeyVault.Certificates.DeletedCertificate>> WaitForCompletionAsync (System.Threading.CancellationToken cancellationToken = default);
override this.WaitForCompletionAsync : System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<Azure.Response<Azure.Security.KeyVault.Certificates.DeletedCertificate>>
Public Overrides Function WaitForCompletionAsync (Optional cancellationToken As CancellationToken = Nothing) As ValueTask(Of Response(Of DeletedCertificate))
Parameters
- cancellationToken
- CancellationToken
A CancellationToken used for the periodical service calls.
Returns
The last HTTP response received from the server.
Remarks
This method will periodically call UpdateStatusAsync till HasCompleted is true, then return the final result of the operation.
Applies to
WaitForCompletionAsync(TimeSpan, CancellationToken)
Periodically calls the server till the long-running operation completes.
public override System.Threading.Tasks.ValueTask<Azure.Response<Azure.Security.KeyVault.Certificates.DeletedCertificate>> WaitForCompletionAsync (TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken);
override this.WaitForCompletionAsync : TimeSpan * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<Azure.Response<Azure.Security.KeyVault.Certificates.DeletedCertificate>>
Public Overrides Function WaitForCompletionAsync (pollingInterval As TimeSpan, cancellationToken As CancellationToken) As ValueTask(Of Response(Of DeletedCertificate))
Parameters
- pollingInterval
- TimeSpan
The interval between status requests to the server. The interval can change based on information returned from the server. For example, the server might communicate to the client that there is not reason to poll for status change sooner than some time.
- cancellationToken
- CancellationToken
A CancellationToken used for the periodical service calls.
Returns
The last HTTP response received from the server.
Remarks
This method will periodically call UpdateStatusAsync till HasCompleted is true, then return the final result of the operation.
Applies to
Azure SDK for .NET