VisualizerObjectSource.CreateReplacementObject Method
Visual Studio 2005
Namespace: Microsoft.VisualStudio.DebuggerVisualizers
Assembly: Microsoft.VisualStudio.DebuggerVisualizers (in microsoft.visualstudio.debuggervisualizers.dll)
Assembly: Microsoft.VisualStudio.DebuggerVisualizers (in microsoft.visualstudio.debuggervisualizers.dll)
public Object CreateReplacementObject ( Object target, Stream incomingData )
public function CreateReplacementObject ( target : Object, incomingData : Stream ) : Object
Parameters
- target
Object being visualized.
- incomingData
Incoming data stream.
Return Value
An object, with contents constructed from the incoming data stream, that can replace the target object. This method does not actually replace target but rather provides a replacement object for the debugger to do the actual replacement.Reads an incoming data stream from the debugger side and uses the data to construct a replacement object for the target object. This method is called when ReplaceData or ReplaceObject is called on the debugger side.