Partager via


QueryProcessResult.Create Method

Definition

Overloads

Create<TResult,TProcessState>(TResult, TProcessState, IQueryProcessRequest, String)

Creates a query result item.

Create<TResult>(TResult, IQueryProcessRequest, String)

Creates a query result item.

Create<TResult,TProcessState>(TResult, TProcessState, IQueryProcessRequest, String)

Creates a query result item.

public static Microsoft.VisualStudio.ProjectSystem.Query.Execution.QueryProcessResult<TResult> Create<TResult,TProcessState> (TResult result, TProcessState processState, Microsoft.VisualStudio.ProjectSystem.Query.Execution.IQueryProcessRequest request, string? zone);
static member Create : 'Result * 'ProcessState * Microsoft.VisualStudio.ProjectSystem.Query.Execution.IQueryProcessRequest * string -> Microsoft.VisualStudio.ProjectSystem.Query.Execution.QueryProcessResult<'Result>
Public Shared Function Create(Of TResult, TProcessState) (result As TResult, processState As TProcessState, request As IQueryProcessRequest, zone As String) As QueryProcessResult(Of TResult)

Type Parameters

TResult

The type of the query result data.

TProcessState

The processor state used by other processors in the further processing.

Parameters

result
TResult

The query result data.

processState
TProcessState

A state used by further processing the query.

request
IQueryProcessRequest

The query request that lead to this result.

zone
String

The zone of the data it belongs to.

Returns

Applies to

Create<TResult>(TResult, IQueryProcessRequest, String)

Creates a query result item.

public static Microsoft.VisualStudio.ProjectSystem.Query.Execution.QueryProcessResult<TResult> Create<TResult> (TResult result, Microsoft.VisualStudio.ProjectSystem.Query.Execution.IQueryProcessRequest request, string? zone);
static member Create : 'Result * Microsoft.VisualStudio.ProjectSystem.Query.Execution.IQueryProcessRequest * string -> Microsoft.VisualStudio.ProjectSystem.Query.Execution.QueryProcessResult<'Result>
Public Shared Function Create(Of TResult) (result As TResult, request As IQueryProcessRequest, zone As String) As QueryProcessResult(Of TResult)

Type Parameters

TResult

The type of the query result data.

Parameters

result
TResult

The query result data.

request
IQueryProcessRequest

The query request that lead to this result.

zone
String

The zone of the data it belongs to.

Returns

Applies to