DkmSuccessEvaluationResult.TransferDataToDebuggeeSideVisualizer 方法

定义

执行调试对象端自定义可视化工具类型的 TransferData ( ... ) 方法。

位置约束:必须从 IDE 组件 (组件级别 100000) 中调用 API > 。

此 API 是在 Visual Studio 14 RTM (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);
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)

参数

DataIn
Byte[]

中要传输到调试对象端可视化工具类的数据。

ExceptionType
String

[Out,Optional]引发的异常的类型(如果有)。

ExceptionStackTrace
String

[Out,Optional]引发的异常的堆栈跟踪(如果有)。

ExceptionMessage
String

[Out,Optional]异常消息(如果有)。

返回

ReadOnlyCollection<Byte>

[Out,Optional]作为字节数组封送的 TransferData ( ... ) 方法结果的原始字节。

适用于