C# Class Akka.Serialization.SerializerWithStringManifest

Inheritance: Serializer
Afficher le fichier Open project: rogeralsing/akka.net Class Usage Examples

Méthodes publiques

Méthode Description
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.

Méthodes protégées

Méthode Description
SerializerWithStringManifest ( ExtendedActorSystem system ) : System

Method Details

FromBinary() public final méthode

public final FromBinary ( byte bytes, Type type ) : object
bytes byte
type System.Type
Résultat object

FromBinary() public abstract méthode

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
Résultat object

Manifest() public abstract méthode

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
Résultat string

SerializerWithStringManifest() protected méthode

protected SerializerWithStringManifest ( ExtendedActorSystem system ) : System
system ExtendedActorSystem
Résultat System