Deserialize a row from a binary stream.
This binary stream must be written by SerializeRow().
If no row in the reader, throw EndOfStreamException.
If data corrupt, throw InvalidDataException.
Namespace: ScopeRuntimeAssembly: ScopeRuntime (in ScopeRuntime.exe) Version: 1.0.0.0 (10.2.2.0)
Syntax
C# |
---|
public static void DeserializeRow(
Row row,
BinaryReader reader
) |
Visual Basic |
---|
Public Shared Sub DeserializeRow ( _
row As Row, _
reader As BinaryReader _
) |
Visual C++ |
---|
public:
static void DeserializeRow(
Row^ row,
BinaryReader^ reader
) |
Parameters
- row
- Type: ScopeRuntime..::..Row
Row to be deserialized
- reader
- Type: BinaryReader
BinaryReader containing data
See Also