IVisualizerObjectProvider2.GetDeserializableObjectFrom(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.
Helper method that can be used to get a deserializable object for cases in which the target app might not support Binary Serialization. In these cases the underlying format should be serialized using JSON, so callers can query individual properties to determine the type of the object they want to deserialize.
public:
Microsoft::VisualStudio::DebuggerVisualizers::IDeserializableObject ^ GetDeserializableObjectFrom(System::IO::Stream ^ stream);
public Microsoft.VisualStudio.DebuggerVisualizers.IDeserializableObject GetDeserializableObjectFrom (System.IO.Stream stream);
abstract member GetDeserializableObjectFrom : System.IO.Stream -> Microsoft.VisualStudio.DebuggerVisualizers.IDeserializableObject
Public Function GetDeserializableObjectFrom (stream As Stream) As IDeserializableObject
Parameters
- stream
- Stream
The stream that contains an object to deserialize.
Returns
An IDeserializableObject instance that can be used to find the type of the underlying object if it was formatted using JSON.