I know there\'s 3 type s of serialization in .net :
Soap , Xml , Binary.
Wcf instructed the DataContract attribute which also serialize ... bu
It is the binding defined for the given endpoint which specifies the serialization mechanism. For example:
basicHttpBinding and wsHttpBinding use SOAPnetTcpBinding uses binary serializationwebHttpBinding could use XML, Json, ...You can read more about the different built-in bindings and their properties on this article. Thanks to the extensibility of WCF you could of course write your own custom bindings.