Click or drag to resize
Akka.NETSerializationFindSerializerForType Method
Returns the configured Serializer for the given Class. The configured Serializer is used if the configured class `IsAssignableFrom` from the type, i.e. the configured class is a super class or implemented interface. In case of ambiguity it is primarily using the most specific configured class, and secondly the entry configured first.

Namespace:  Akka.Serialization
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public Serializer FindSerializerForType(
	Type objectType
)

Parameters

objectType
Type: SystemType
TBD

Return Value

Type: Serializer
TBD
Exceptions
ExceptionCondition
SerializationException This exception is thrown if the serializer of the given objectType could not be found.
See Also