1.

Types Of Serialization

Answer»

1. Binary Serialization - preserves TYPE fidelity, which is USEFUL for preserving the state of an OBJECT between different invocations of an application.
2. XML Serialization - serializes only public properties and fields and does not preserve type fidelity. This is useful when you want to provide or CONSUME data without restricting the application that uses the data.

1. Binary Serialization - preserves type fidelity, which is useful for preserving the state of an object between different invocations of an application.
2. XML Serialization - serializes only public properties and fields and does not preserve type fidelity. This is useful when you want to provide or consume data without restricting the application that uses the data.



Discussion

No Comment Found