DkmSuccessEvaluationResult.DestroyDebuggeeSideVisualizerObject 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.
Overloads
DestroyDebuggeeSideVisualizerObject() |
Releases the debuggee-side Custom Visualizer type in the debuggee process. Location constraint: API must be called from an IDE component (component level > 100,000). This API was introduced in Visual Studio 14 RTM (DkmApiVersion.VS14RTM). |
DestroyDebuggeeSideVisualizerObject(DkmWorkList, DkmCompletionRoutine<DkmDestroyDebuggeeSideVisualizerObjectAsyncResult>) |
Releases the debuggee-side Custom Visualizer type in the debuggee process. 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 14 RTM (DkmApiVersion.VS14RTM). |
DestroyDebuggeeSideVisualizerObject()
Releases the debuggee-side Custom Visualizer type in the debuggee process.
Location constraint: API must be called from an IDE component (component level > 100,000).
This API was introduced in Visual Studio 14 RTM (DkmApiVersion.VS14RTM).
public:
bool DestroyDebuggeeSideVisualizerObject();
public:
bool DestroyDebuggeeSideVisualizerObject();
bool DestroyDebuggeeSideVisualizerObject();
public bool DestroyDebuggeeSideVisualizerObject ();
member this.DestroyDebuggeeSideVisualizerObject : unit -> bool
Public Function DestroyDebuggeeSideVisualizerObject () As Boolean
Returns
[Out] If the handle was successfully removed, return true. If no handle, return false.
Applies to
DestroyDebuggeeSideVisualizerObject(DkmWorkList, DkmCompletionRoutine<DkmDestroyDebuggeeSideVisualizerObjectAsyncResult>)
Releases the debuggee-side Custom Visualizer type in the debuggee process.
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 14 RTM (DkmApiVersion.VS14RTM).
public void DestroyDebuggeeSideVisualizerObject (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Evaluation.DkmDestroyDebuggeeSideVisualizerObjectAsyncResult> CompletionRoutine);
member this.DestroyDebuggeeSideVisualizerObject : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Evaluation.DkmDestroyDebuggeeSideVisualizerObjectAsyncResult> -> unit
Public Sub DestroyDebuggeeSideVisualizerObject (WorkList As DkmWorkList, CompletionRoutine As DkmCompletionRoutine(Of DkmDestroyDebuggeeSideVisualizerObjectAsyncResult))
Parameters
- WorkList
- DkmWorkList
WorkList to append the new work item to.
- CompletionRoutine
- DkmCompletionRoutine<DkmDestroyDebuggeeSideVisualizerObjectAsyncResult>
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.