IQueryResultReceiver<TResult>.OnRequestProcessFinishedAsync 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.
The query step tells the receiver that it finished all processing for one request.
public System.Threading.Tasks.Task OnRequestProcessFinishedAsync (Microsoft.VisualStudio.ProjectSystem.Query.Execution.IQueryProcessRequest request);
abstract member OnRequestProcessFinishedAsync : Microsoft.VisualStudio.ProjectSystem.Query.Execution.IQueryProcessRequest -> System.Threading.Tasks.Task
Public Function OnRequestProcessFinishedAsync (request As IQueryProcessRequest) As Task
Parameters
- request
- IQueryProcessRequest
The original request instance.
Returns
Task finishes when receiver handles the information.
Remarks
This must be called once for every request which is not cancelled, after the receiver accepts all results produced from it.