IDkmClrCustomVisualizerObjectProvider.CreateDebuggeeSideVisualizerObject Method

Definition

Instantiates the debuggee-side Custom Visualizer type in the debuggee process. Note: this method got deprecated in favor of the one defined in IDkmClrCustomVisualizerObjectProvider1610 interface.

public:
 void CreateDebuggeeSideVisualizerObject(Microsoft::VisualStudio::Debugger::Evaluation::DkmSuccessEvaluationResult ^ successResult, System::UInt32 selectedVisualizerIndex, [Runtime::InteropServices::Out] System::String ^ % exceptionType, [Runtime::InteropServices::Out] System::String ^ % exceptionStackTrace, [Runtime::InteropServices::Out] System::String ^ % exceptionMessage);
public void CreateDebuggeeSideVisualizerObject (Microsoft.VisualStudio.Debugger.Evaluation.DkmSuccessEvaluationResult successResult, uint selectedVisualizerIndex, out string exceptionType, out string exceptionStackTrace, out string exceptionMessage);
public void CreateDebuggeeSideVisualizerObject (Microsoft.VisualStudio.Debugger.Evaluation.DkmSuccessEvaluationResult successResult, uint selectedVisualizerIndex, out string? exceptionType, out string? exceptionStackTrace, out string? exceptionMessage);
abstract member CreateDebuggeeSideVisualizerObject : Microsoft.VisualStudio.Debugger.Evaluation.DkmSuccessEvaluationResult * uint32 * string * string * string -> unit
Public Sub CreateDebuggeeSideVisualizerObject (successResult As DkmSuccessEvaluationResult, selectedVisualizerIndex As UInteger, 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.

selectedVisualizerIndex
UInt32

[In] The index of the selected visualizer.

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