Share via


DkmSuccessEvaluationResult.GetDataFromDebuggeeSideVisualizer Method

Definition

Overloads

GetDataFromDebuggeeSideVisualizer(String, String, String)

Executes the debuggee-side Custom Visualizer type's GetData(...) method.

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).

GetDataFromDebuggeeSideVisualizer(DkmWorkList, DkmCompletionRoutine<DkmGetDataFromDebuggeeSideVisualizerAsyncResult>)

Executes the debuggee-side Custom Visualizer type's GetData(...) method.

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).

GetDataFromDebuggeeSideVisualizer(String, String, String)

Executes the debuggee-side Custom Visualizer type's GetData(...) method.

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:
 System::Collections::ObjectModel::ReadOnlyCollection<System::Byte> ^ GetDataFromDebuggeeSideVisualizer([Runtime::InteropServices::Out] System::String ^ % ExceptionType, [Runtime::InteropServices::Out] System::String ^ % ExceptionStackTrace, [Runtime::InteropServices::Out] System::String ^ % ExceptionMessage);
public System.Collections.ObjectModel.ReadOnlyCollection<byte> GetDataFromDebuggeeSideVisualizer (out string ExceptionType, out string ExceptionStackTrace, out string ExceptionMessage);
public System.Collections.ObjectModel.ReadOnlyCollection<byte>? GetDataFromDebuggeeSideVisualizer (out string? ExceptionType, out string? ExceptionStackTrace, out string? ExceptionMessage);
member this.GetDataFromDebuggeeSideVisualizer : string * string * string -> System.Collections.ObjectModel.ReadOnlyCollection<byte>
Public Function GetDataFromDebuggeeSideVisualizer (ByRef ExceptionType As String, ByRef ExceptionStackTrace As String, ByRef ExceptionMessage As String) As ReadOnlyCollection(Of Byte)

Parameters

ExceptionType
String

[Out,Optional] The type of the exception thrown, if any.

ExceptionStackTrace
String

[Out,Optional] The stack trace of the exception thrown, if any.

ExceptionMessage
String

[Out,Optional] The exception message, if any.

Returns

[Out,Optional] The raw bytes of the GetData(...) method marshalled as a byte array.

Applies to

GetDataFromDebuggeeSideVisualizer(DkmWorkList, DkmCompletionRoutine<DkmGetDataFromDebuggeeSideVisualizerAsyncResult>)

Executes the debuggee-side Custom Visualizer type's GetData(...) method.

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 GetDataFromDebuggeeSideVisualizer (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Evaluation.DkmGetDataFromDebuggeeSideVisualizerAsyncResult> CompletionRoutine);
member this.GetDataFromDebuggeeSideVisualizer : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Evaluation.DkmGetDataFromDebuggeeSideVisualizerAsyncResult> -> unit
Public Sub GetDataFromDebuggeeSideVisualizer (WorkList As DkmWorkList, CompletionRoutine As DkmCompletionRoutine(Of DkmGetDataFromDebuggeeSideVisualizerAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

CompletionRoutine
DkmCompletionRoutine<DkmGetDataFromDebuggeeSideVisualizerAsyncResult>

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