VisualizerObjectSource.TransferData Method
Namespace: Microsoft.VisualStudio.DebuggerVisualizers
Assembly: Microsoft.VisualStudio.DebuggerVisualizers (in Microsoft.VisualStudio.DebuggerVisualizers.dll)
public virtual void TransferData( Object target, Stream incomingData, Stream outgoingData )
Parameters
- target
- Type: System.Object
Object being visualized.
- incomingData
- Type: System.IO.Stream
Incoming data stream from the debugger side.
- outgoingData
- Type: System.IO.Stream
Outgoing data stream going to the debugger side.
Transfers data simultaneously in both directions between the debuggee and debugger sides. This data may be any sort of request for the visualizer, whether to fetch data incrementally, or to update the state of the object being visualized.
The transfer is always initiated by the debugger side. This method can be very useful if you implement a custom messaging scheme. The Deserialize and Serialize helper methods can also be useful.
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.