[This is preliminary documentation and is subject to change.]
Attempts to deserialize an element from the given source buffer.
Namespace: Microsoft.Research.Naiad.Serialization
Assembly: Microsoft.Research.Naiad (in Microsoft.Research.Naiad.dll) Version: 0.5.0.0 (0.5.0.0)
Syntax
C#
bool TryDeserialize( ref RecvBuffer source, out TElement value )
Parameters
- source
- Type: Microsoft.Research.Naiad.SerializationRecvBuffer
The source buffer. - value
- Type: TElement
The deserialized element, if the method returns true.
Return Value
Type: BooleanTrue if deserialization was successful, otherwise false.
See Also