VisualizerObjectSource.GetData(Object, Stream) 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.
Gets a blob of data. Writes data from the object into the memorystream.
public:
virtual void GetData(System::Object ^ target, System::IO::Stream ^ outgoingData);
public virtual void GetData (object target, System.IO.Stream outgoingData);
abstract member GetData : obj * System.IO.Stream -> unit
override this.GetData : obj * System.IO.Stream -> unit
Public Overridable Sub GetData (target As Object, outgoingData As Stream)
Parameters
- target
- Object
Object being debugged.
- outgoingData
- Stream
MemoryStream to write data into.
Remarks
Gets data from the specified object and serializes it into the outgoing data stream. This object is called when GetData or GetObject is called. You can override this method to support a custom messaging scheme.