DkmSuccessEvaluationResult.GetDataFromDebuggeeSideVisualizer Method

Definition

Overloads

GetDataFromDebuggeeSideVisualizer(DkmWorkList, DkmCompletionRoutine<DkmGetDataFromDebuggeeSideVisualizerAsyncResult>)
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>)

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

Applies to

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