RestApiOperationResponseFactory Delegate    
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.
Represents a factory for creating instances of the RestApiOperationResponse.
public delegate System.Threading.Tasks.Task<Microsoft.SemanticKernel.RestApiOperationResponse> RestApiOperationResponseFactory(RestApiOperationResponseFactoryContext context, CancellationToken cancellationToken = default);type RestApiOperationResponseFactory = delegate of RestApiOperationResponseFactoryContext * CancellationToken -> Task<RestApiOperationResponse>Public Delegate Function RestApiOperationResponseFactory(context As RestApiOperationResponseFactoryContext, Optional cancellationToken As CancellationToken = Nothing) As Task(Of RestApiOperationResponse) Parameters
The context that contains the operation details.
- cancellationToken
- CancellationToken
The cancellation token used to signal cancellation.
Return Value
A task that represents the asynchronous operation, containing an instance of RestApiOperationResponse.