Table of Contents

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 Stream

The 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 Stream

The stream to write the binary data.

fieldNavigator ITypeFieldNavigator

Strategy to iterate over type fields.

Properties

DefaultEndianness

Gets or sets the default endianness for the serialization.

public EndiannessMode DefaultEndianness { get; set; }

Property Value

EndiannessMode

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 Stream

The stream to write the binary data.

objType Type

The type of object to serialize.

obj object

The 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

type Type

The type of object to serialize.

obj object

The object to serialize into the stream.

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 Stream

The stream to write the binary data.

obj T

The 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 T

The object to serialize into the stream.

Type Parameters

T

The type of the object.