IDkmClrCustomVisualizerObjectProvider.CreateReplacementObjectOnDebuggeeSideVisualizer Method

Definition

Executes the debuggee-side Custom Visualizer type's CreateReplacementObject(...) method, and writes the result to the visualized object handle.

public:
 void CreateReplacementObjectOnDebuggeeSideVisualizer(Microsoft::VisualStudio::Debugger::Evaluation::DkmSuccessEvaluationResult ^ successResult, cli::array <System::Byte> ^ dataIn, [Runtime::InteropServices::Out] System::String ^ % exceptionType, [Runtime::InteropServices::Out] System::String ^ % exceptionStackTrace, [Runtime::InteropServices::Out] System::String ^ % exceptionMessage);
public void CreateReplacementObjectOnDebuggeeSideVisualizer (Microsoft.VisualStudio.Debugger.Evaluation.DkmSuccessEvaluationResult successResult, byte[] dataIn, out string exceptionType, out string exceptionStackTrace, out string exceptionMessage);
abstract member CreateReplacementObjectOnDebuggeeSideVisualizer : Microsoft.VisualStudio.Debugger.Evaluation.DkmSuccessEvaluationResult * byte[] * string * string * string -> unit
Public Sub CreateReplacementObjectOnDebuggeeSideVisualizer (successResult As DkmSuccessEvaluationResult, dataIn As Byte(), ByRef exceptionType As String, ByRef exceptionStackTrace As String, ByRef exceptionMessage As String)

Parameters

successResult
DkmSuccessEvaluationResult

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

dataIn
Byte[]

[In] The data to transfer to the debuggee-side Visualizer class.

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.

Applies to