-
Notifications
You must be signed in to change notification settings - Fork 2
IEncoder Interface
sequenze edited this page Jun 15, 2017
·
2 revisions
Defines the operations required to support encoding and decoding messages from objects to a string representation.
Object
public abstract interface IEncoder| Name | Description |
|---|---|
| Deserialize(String,Type[]) | Composes and returns a new object based on the provided string. |
| Serialize(IMessage,Type[]) | Decomposes the passed object into a string. |
| Decode(String) | Template method for deserializing and unboxing the interoperable types specified of the string representation into valid .NET primitive types. |
| Encode(IMessage) | Template method for serializing and boxing the passed message into interoperable types specified as a string. |