| SerializationFindSerializerForType 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.129 (1.2.3.129)
Syntax public Serializer FindSerializerForType(
Type objectType
)
member FindSerializerForType :
objectType : Type -> Serializer
Parameters
- objectType
- Type: SystemType
TBD
Return Value
Type:
SerializerTBD
Exceptions Exception | Condition |
---|
SerializationException |
This exception is thrown if the serializer of the given objectType could not be found.
|
See Also