DkmSuccessEvaluationResult.TransferDataToDebuggeeSideVisualizer Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Executes the debuggee-side Custom Visualizer type's TransferData(...) 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> ^ TransferDataToDebuggeeSideVisualizer(cli::array <System::Byte> ^ DataIn, [Runtime::InteropServices::Out] System::String ^ % ExceptionType, [Runtime::InteropServices::Out] System::String ^ % ExceptionStackTrace, [Runtime::InteropServices::Out] System::String ^ % ExceptionMessage);
public System.Collections.ObjectModel.ReadOnlyCollection<byte> TransferDataToDebuggeeSideVisualizer (byte[] DataIn, out string ExceptionType, out string ExceptionStackTrace, out string ExceptionMessage);
public System.Collections.ObjectModel.ReadOnlyCollection<byte>? TransferDataToDebuggeeSideVisualizer (byte[]? DataIn, out string? ExceptionType, out string? ExceptionStackTrace, out string? ExceptionMessage);
member this.TransferDataToDebuggeeSideVisualizer : byte[] * string * string * string -> System.Collections.ObjectModel.ReadOnlyCollection<byte>
Public Function TransferDataToDebuggeeSideVisualizer (DataIn As Byte(), ByRef ExceptionType As String, ByRef ExceptionStackTrace As String, ByRef ExceptionMessage As String) As ReadOnlyCollection(Of Byte)
Parameters
- 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.
Returns
[Out,Optional] The raw bytes of the result of the TransferData(...) method marshalled as a byte array.