Click or drag to resize
Akka.NETNewtonSoftJsonSerializerSettings Constructor
Creates a new instance of the NewtonSoftJsonSerializerSettings.

Namespace:  Akka.Serialization
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public NewtonSoftJsonSerializerSettings(
	bool encodeTypeNames,
	bool preserveObjectReferences,
	IEnumerable<Type> converters
)

Parameters

encodeTypeNames
Type: SystemBoolean
Determines if a special `$type` field should be emitted into serialized JSON. Must be true if corresponding serializer is used as default.
preserveObjectReferences
Type: SystemBoolean
Determines if object references should be tracked within serialized object graph. Must be true if corresponding serialize is used as default.
converters
Type: System.Collections.GenericIEnumerableType
A list of types implementing a JsonConverter to support custom types serialization.
See Also