Share via


DkmModuleInstance.GetSymbolSearchResult Method

Definition

Overloads

GetSymbolSearchResult()

Retrieves any symbol search results associated with this module instance.

Location constraint: API must be called from an IDE component (component level > 100,000).

This API was introduced in Visual Studio 17 Update 3 (DkmApiVersion.VS17Update3).

GetSymbolSearchResult(DkmWorkList, DkmCompletionRoutine<DkmGetSymbolSearchResultAsyncResult>)

Retrieves any symbol search results associated with this module instance.

This method will append a new work item to the specified work list, and return once the work item has been appended. The actual processing of the work item is asynchronous. The caller will be notified that the request is complete through the completion routine.

Location constraint: API must be called from an IDE component (component level > 100,000).

This API was introduced in Visual Studio 17 Update 3 (DkmApiVersion.VS17Update3).

GetSymbolSearchResult()

Retrieves any symbol search results associated with this module instance.

Location constraint: API must be called from an IDE component (component level > 100,000).

This API was introduced in Visual Studio 17 Update 3 (DkmApiVersion.VS17Update3).

public object? GetSymbolSearchResult ();
member this.GetSymbolSearchResult : unit -> obj
Public Function GetSymbolSearchResult () As Object

Returns

[Out,Optional] The ISymbolSearchResult interface associated with this module instance, if any.

Applies to

GetSymbolSearchResult(DkmWorkList, DkmCompletionRoutine<DkmGetSymbolSearchResultAsyncResult>)

Retrieves any symbol search results associated with this module instance.

This method will append a new work item to the specified work list, and return once the work item has been appended. The actual processing of the work item is asynchronous. The caller will be notified that the request is complete through the completion routine.

Location constraint: API must be called from an IDE component (component level > 100,000).

This API was introduced in Visual Studio 17 Update 3 (DkmApiVersion.VS17Update3).

public void GetSymbolSearchResult (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.DkmGetSymbolSearchResultAsyncResult> CompletionRoutine);
member this.GetSymbolSearchResult : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.DkmGetSymbolSearchResultAsyncResult> -> unit
Public Sub GetSymbolSearchResult (WorkList As DkmWorkList, CompletionRoutine As DkmCompletionRoutine(Of DkmGetSymbolSearchResultAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

CompletionRoutine
DkmCompletionRoutine<DkmGetSymbolSearchResultAsyncResult>

Routine to fire when the request is complete. If the request is successfully appended to the work list, this will always fire (including when the operation is canceled). This will never fire if appending the work item fails.

Applies to