C# Класс Akka.Serialization.SerializerWithStringManifest

Наследование: Serializer
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
FromBinary ( byte bytes, Type type ) : object
FromBinary ( byte binary, string manifest ) : object

Produces an object from an array of bytes, with an optional type-hint.

Manifest ( object o ) : string

Return the manifest (type hint) that will be provided in the fromBinary method. Return string.Empty if not needed.

Защищенные методы

Метод Описание
SerializerWithStringManifest ( ExtendedActorSystem system ) : System

Описание методов

FromBinary() публичный закрытый Метод

public final FromBinary ( byte bytes, Type type ) : object
bytes byte
type System.Type
Результат object

FromBinary() публичный абстрактный Метод

Produces an object from an array of bytes, with an optional type-hint.
public abstract FromBinary ( byte binary, string manifest ) : object
binary byte
manifest string
Результат object

Manifest() публичный абстрактный Метод

Return the manifest (type hint) that will be provided in the fromBinary method. Return string.Empty if not needed.
public abstract Manifest ( object o ) : string
o object
Результат string

SerializerWithStringManifest() защищенный Метод

protected SerializerWithStringManifest ( ExtendedActorSystem system ) : System
system ExtendedActorSystem
Результат System