Share via


ByteSerializable Class

Definition

A class that needs to be serialized/deserialized to/from a byte array should inherit from this base class

[System.Serializable]
public abstract class ByteSerializable : System.Fabric.IByteSerializable
[<System.Serializable>]
type ByteSerializable = class
    interface IByteSerializable
Public MustInherit Class ByteSerializable
Implements IByteSerializable
Inheritance
ByteSerializable
Derived
Attributes
Implements

Constructors

ByteSerializable()

Methods

FromBytes(Byte[])

This is the default implementation to covert an object back from a byte array

Read(BinaryReader)

This method must be implemented by derived classes so that they can be converted back from a byte array

ToBytes()

This is the default implementation to convert an object into a byte array

Write(BinaryWriter)

This method must be implemented by derived classes so that they can be converted into a byte array

Applies to