InvocationHandler.CancelAsync 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.
Handles POST /invocations/{invocationId}/cancel. Returns 404 by default.
Override to support cancellation.
public virtual System.Threading.Tasks.Task CancelAsync(string invocationId, Microsoft.AspNetCore.Http.HttpRequest request, Microsoft.AspNetCore.Http.HttpResponse response, Azure.AI.AgentServer.Invocations.InvocationContext context, System.Threading.CancellationToken cancellationToken);
abstract member CancelAsync : string * Microsoft.AspNetCore.Http.HttpRequest * Microsoft.AspNetCore.Http.HttpResponse * Azure.AI.AgentServer.Invocations.InvocationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.CancelAsync : string * Microsoft.AspNetCore.Http.HttpRequest * Microsoft.AspNetCore.Http.HttpResponse * Azure.AI.AgentServer.Invocations.InvocationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function CancelAsync (invocationId As String, request As HttpRequest, response As HttpResponse, context As InvocationContext, cancellationToken As CancellationToken) As Task
Parameters
- invocationId
- String
The invocation identifier.
- request
- HttpRequest
The incoming HTTP request.
- response
- HttpResponse
The outgoing HTTP response.
- context
- InvocationContext
Per-request context with isolation keys, headers, and query parameters.
- cancellationToken
- CancellationToken
A token to observe for cancellation.
Returns
A task representing the async operation.