DkmSuccessEvaluationResult.CreateDebuggeeSideVisualizerObject Method

Definition

Overloads

CreateDebuggeeSideVisualizerObject(UInt32, String, String, String)

Instantiates the debuggee-side Custom Visualizer type in the debuggee process.

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

CreateDebuggeeSideVisualizerObject(UInt32, String, String, String, Boolean)

CreateDebuggeeSideVisualizerObject(UInt32, String, String, String)

Instantiates the debuggee-side Custom Visualizer type in the debuggee process.

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 CreateDebuggeeSideVisualizerObject(System::UInt32 SelectedVisualizerIndex, [Runtime::InteropServices::Out] System::String ^ % ExceptionType, [Runtime::InteropServices::Out] System::String ^ % ExceptionStackTrace, [Runtime::InteropServices::Out] System::String ^ % ExceptionMessage);
public void CreateDebuggeeSideVisualizerObject (uint SelectedVisualizerIndex, out string ExceptionType, out string ExceptionStackTrace, out string ExceptionMessage);
member this.CreateDebuggeeSideVisualizerObject : uint32 * string * string * string -> unit
Public Sub CreateDebuggeeSideVisualizerObject (SelectedVisualizerIndex As UInteger, ByRef ExceptionType As String, ByRef ExceptionStackTrace As String, ByRef ExceptionMessage As String)

Parameters

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

CreateDebuggeeSideVisualizerObject(UInt32, String, String, String, Boolean)

public:
 void CreateDebuggeeSideVisualizerObject(System::UInt32 SelectedVisualizerIndex, [Runtime::InteropServices::Out] System::String ^ % ExceptionType, [Runtime::InteropServices::Out] System::String ^ % ExceptionStackTrace, [Runtime::InteropServices::Out] System::String ^ % ExceptionMessage, [Runtime::InteropServices::Out] bool % IsBinaryFormatterSupported);
public void CreateDebuggeeSideVisualizerObject (uint SelectedVisualizerIndex, out string ExceptionType, out string ExceptionStackTrace, out string ExceptionMessage, out bool IsBinaryFormatterSupported);
member this.CreateDebuggeeSideVisualizerObject : uint32 * string * string * string * bool -> unit
Public Sub CreateDebuggeeSideVisualizerObject (SelectedVisualizerIndex As UInteger, ByRef ExceptionType As String, ByRef ExceptionStackTrace As String, ByRef ExceptionMessage As String, ByRef IsBinaryFormatterSupported As Boolean)

Parameters

SelectedVisualizerIndex
UInt32
ExceptionType
String
ExceptionStackTrace
String
ExceptionMessage
String
IsBinaryFormatterSupported
Boolean

Applies to