Condividi tramite


WorkspacesExtensibility.QueryProjectByPathAsync<T> Method

Definition

Performs an asynchronous query on project with a full project file path.

public System.Threading.Tasks.Task<Microsoft.VisualStudio.ProjectSystem.Query.IQueryResults<T>> QueryProjectByPathAsync<T> (Func<Microsoft.VisualStudio.ProjectSystem.Query.IAsyncQueryable<Microsoft.VisualStudio.ProjectSystem.Query.IProjectSnapshot>,Microsoft.VisualStudio.ProjectSystem.Query.IAsyncQueryable<T>> queryFunc, string projectFileFullPath, System.Threading.CancellationToken cancellationToken);
member this.QueryProjectByPathAsync : Func<Microsoft.VisualStudio.ProjectSystem.Query.IAsyncQueryable<Microsoft.VisualStudio.ProjectSystem.Query.IProjectSnapshot>, Microsoft.VisualStudio.ProjectSystem.Query.IAsyncQueryable<'T>> * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.VisualStudio.ProjectSystem.Query.IQueryResults<'T>>
Public Function QueryProjectByPathAsync(Of T) (queryFunc As Func(Of IAsyncQueryable(Of IProjectSnapshot), IAsyncQueryable(Of T)), projectFileFullPath As String, cancellationToken As CancellationToken) As Task(Of IQueryResults(Of T))

Type Parameters

T

Type of the object being queried.

Parameters

queryFunc
Func<IAsyncQueryable<IProjectSnapshot>,IAsyncQueryable<T>>

Function to prepare query.

projectFileFullPath
String

A full file path.

cancellationToken
CancellationToken

Cancellation token to monitor.

Returns

Results of the project query.

Exceptions

Thrown when query execution is failed.

Applies to