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

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

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

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

Deserializes a byte array into an object of type type.

NewtonSoftJsonSerializer ( ExtendedActorSystem system ) : System

Initializes a new instance of the NewtonSoftJsonSerializer class.

ToBinary ( object obj ) : byte[]

Serializes the given object into a byte array

Приватные методы

Метод Описание
GetValue ( string V ) : object
TranslateSurrogate ( object deserializedValue, NewtonSoftJsonSerializer parent, Type type ) : object

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

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

Deserializes a byte array into an object of type type.
public FromBinary ( byte bytes, Type type ) : object
bytes byte The array containing the serialized object
type System.Type The type of object contained in the array
Результат object

NewtonSoftJsonSerializer() публичный Метод

Initializes a new instance of the NewtonSoftJsonSerializer class.
public NewtonSoftJsonSerializer ( ExtendedActorSystem system ) : System
system ExtendedActorSystem The actor system to associate with this serializer.
Результат System

ToBinary() публичный Метод

Serializes the given object into a byte array
public ToBinary ( object obj ) : byte[]
obj object The object to serialize
Результат byte[]