Share via


DocumentTranslationClient.CancelTranslationAsync Method

Definition

Overloads

CancelTranslationAsync(Guid, RequestContext)

[Protocol Method] Cancel a currently processing or queued translation

CancelTranslationAsync(Guid, CancellationToken)

Cancel a currently processing or queued translation.

CancelTranslationAsync(Guid, RequestContext)

Source:
DocumentTranslationClient.cs

[Protocol Method] Cancel a currently processing or queued translation

public virtual System.Threading.Tasks.Task<Azure.Response> CancelTranslationAsync (Guid id, Azure.RequestContext context);
abstract member CancelTranslationAsync : Guid * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.CancelTranslationAsync : Guid * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function CancelTranslationAsync (id As Guid, context As RequestContext) As Task(Of Response)

Parameters

id
Guid

Format - uuid. The operation-id.

context
RequestContext

The request context, which can override default behaviors of the client pipeline on a per-call basis.

Returns

The response returned from the service.

Exceptions

Service returned a non-success status code.

Applies to

CancelTranslationAsync(Guid, CancellationToken)

Source:
DocumentTranslationClient.cs

Cancel a currently processing or queued translation.

public virtual System.Threading.Tasks.Task<Azure.Response<Azure.AI.Translation.Document.TranslationStatusResult>> CancelTranslationAsync (Guid id, System.Threading.CancellationToken cancellationToken = default);
abstract member CancelTranslationAsync : Guid * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.AI.Translation.Document.TranslationStatusResult>>
override this.CancelTranslationAsync : Guid * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.AI.Translation.Document.TranslationStatusResult>>
Public Overridable Function CancelTranslationAsync (id As Guid, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of TranslationStatusResult))

Parameters

id
Guid

Format - uuid. The operation-id.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Remarks

Cancel a currently processing or queued translation. A translation will not be cancelled if it is already completed or failed or cancelling. A bad request will be returned. All documents that have completed translation will not be cancelled and will be charged. All pending documents will be cancelled if possible.

Applies to