Deserializes an object.

C# | Visual Basic | Managed C++ |
void DeserializeFrom ( ref ConsumableBlock header, ref ConsumableBlock data )
Sub DeserializeFrom ( _ ByRef header As ConsumableBlock, _ ByRef data As ConsumableBlock _ )
void DeserializeFrom ( ConsumableBlock% header, ConsumableBlock% data )

- header (ConsumableBlock)
- Points to the portion of the received data that represents the header. Data can be copied from it.
- data (ConsumableBlock)
- Points to the portion of the received data that represents the flattened list of buffers that the sender appended to the buffer list during serialization. Data can be copied from it (the memory can be reused unless specifically locked during deserialization by increasing the reference count).