Delegate Deserializer
Deserializer function.
Namespace: Orleans.Serialization
Assembly: Orleans.Core.Abstractions.dll
Syntax
public delegate object Deserializer(Type expected, IDeserializationContext context);
Parameters
| Type | Name | Description |
|---|---|---|
| Type | expected | Expected Type to receive. |
| IDeserializationContext | context | The context under which this object is being deserialized. |
Returns
| Type | Description |
|---|---|
| System.Object | Rehydrated object of the specified Type read from the current position in the input stream. |