T
Tony Johansson
Hi!
I'm reading in a book and it says the following.
"Use XML serialization when you need to exchange an object with an
application that might not be based on the .NET Framework, and you do not
need to serialize any private members."
In the book it also says the following.
"Use SoapFormatter when other application might read your seriazed data and
when sending data across a network SoapFormatter also work reliably in
situations where you could choose BinaryFormatter."
So according to these two text sections I can use whichever of SoapFormatter
and XML serializing whan I want
to send data to another app that might not use :NET Framework.
So I find it hard to know when to use SoapFormatter and whan to use XML
serializer.
//Tony
I'm reading in a book and it says the following.
"Use XML serialization when you need to exchange an object with an
application that might not be based on the .NET Framework, and you do not
need to serialize any private members."
In the book it also says the following.
"Use SoapFormatter when other application might read your seriazed data and
when sending data across a network SoapFormatter also work reliably in
situations where you could choose BinaryFormatter."
So according to these two text sections I can use whichever of SoapFormatter
and XML serializing whan I want
to send data to another app that might not use :NET Framework.
So I find it hard to know when to use SoapFormatter and whan to use XML
serializer.
//Tony