Search
BinarySerializer.Deserialize Method
See Also
 





Deserializes a property value from the provided reader.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

Object Deserialize (
    BinaryReader reader,
    string propertyName,
    Object owner
)

Visual Basic  Copy Code

Function Deserialize( _
    reader As BinaryReader, _
    propertyName As String, _
    owner As Object _
) As Object

 Parameters

reader

A System.IO.BinaryReader instance used to read from the binary stream.

propertyName

The name of property being serialized, e.g. Tag or Id.

owner

The DiagramItem whose property is being serialized, or a Control instance when serializing ControlNode.

 Return Value

The loaded object.

 See Also