Class BinarySerializer
- Namespace
- Yarhl.IO.Serialization
- Assembly
- Yarhl.dll
Binary serialization of objects based on attributes. Equivalent to convert an object into binary.
public class BinarySerializer
- Inheritance
-
BinarySerializer
- Inherited Members
Constructors
BinarySerializer(Stream)
Initializes a new instance of the BinarySerializer class.
public BinarySerializer(Stream stream)
Parameters
stream
StreamThe stream to write the binary data.
BinarySerializer(Stream, ITypeFieldNavigator)
Initializes a new instance of the BinarySerializer class.
public BinarySerializer(Stream stream, ITypeFieldNavigator fieldNavigator)
Parameters
stream
StreamThe stream to write the binary data.
fieldNavigator
ITypeFieldNavigatorStrategy to iterate over type fields.
Properties
DefaultEndianness
Gets or sets the default endianness for the serialization.
public EndiannessMode DefaultEndianness { get; set; }
Property Value
Methods
Serialize(Stream, Type, object)
Serialize the public properties of the object in binary data in the stream.
public static void Serialize(Stream stream, Type objType, object obj)
Parameters
stream
StreamThe stream to write the binary data.
objType
TypeThe type of object to serialize.
obj
objectThe object to serialize into the stream.
Serialize(Type, object)
Serialize the public properties of the object in binary data in the stream.
public void Serialize(Type type, object obj)
Parameters
Serialize<T>(Stream, T)
Serialize the public properties of the object in binary data in the stream.
public static void Serialize<T>(Stream stream, T obj)
Parameters
stream
StreamThe stream to write the binary data.
obj
TThe object to serialize into the stream.
Type Parameters
T
The type of the object.
Serialize<T>(T)
Serialize the public properties of the object in binary data in the stream.
public void Serialize<T>(T obj)
Parameters
obj
TThe object to serialize into the stream.
Type Parameters
T
The type of the object.