Click or drag to resize
Akka.NETHyperionSerializerSettings Constructor
Creates a new instance of a HyperionSerializerSettings.

Namespace:  Akka.Serialization
Assembly:  Akka.Serialization.Hyperion (in Akka.Serialization.Hyperion.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public HyperionSerializerSettings(
	bool preserveObjectReferences,
	bool versionTolerance,
	Type knownTypesProvider
)

Parameters

preserveObjectReferences
Type: SystemBoolean
Flag which determines if serializer should keep track of references in serialized object graph.
versionTolerance
Type: SystemBoolean
Flag which determines if field data should be serialized as part of type manifest.
knownTypesProvider
Type: SystemType
Type implementing IKnownTypesProvider to be used to determine a list of types implicitly known by all cooperating serializer.
Exceptions
ExceptionCondition
ArgumentExceptionRaised when `known-types-provider` type doesn't implement IKnownTypesProvider interface.
See Also