IDkmClrCustomVisualizerObjectProvider.GetDataFromDebuggeeSideVisualizer Method

Definition

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

public:
 System::Collections::ObjectModel::ReadOnlyCollection<System::Byte> ^ GetDataFromDebuggeeSideVisualizer(Microsoft::VisualStudio::Debugger::Evaluation::DkmSuccessEvaluationResult ^ successResult, [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 (Microsoft.VisualStudio.Debugger.Evaluation.DkmSuccessEvaluationResult successResult, out string exceptionType, out string exceptionStackTrace, out string exceptionMessage);
abstract member GetDataFromDebuggeeSideVisualizer : Microsoft.VisualStudio.Debugger.Evaluation.DkmSuccessEvaluationResult * string * string * string -> System.Collections.ObjectModel.ReadOnlyCollection<byte>
Public Function GetDataFromDebuggeeSideVisualizer (successResult As DkmSuccessEvaluationResult, ByRef exceptionType As String, ByRef exceptionStackTrace As String, ByRef exceptionMessage As String) As ReadOnlyCollection(Of Byte)

Parameters

successResult
DkmSuccessEvaluationResult

[In] The formatted result of a successful evaluation, ready to be displayed in an expression evaluation window.

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