I would like to add a DataMember to one of my DataContracts. I would like to know how existing servers and clients will behave in the presence of a new DataMember if one of the parties isn\'t updated.
I\'m interested about the best way to go about setting custom element names when using List of primitives with the DataContractSerializer.Let\'s say I have the following class which contains a List of
I don\'t know very much of WCF... I want to do a clean job to serve entities on client side using DataContracts.Imagine two DataContracts \"System\" and \"Building\": \"System\" may have many \"Build
I am having trouble using DataContracts to deserialize where a list wrapper is augmented with additional data.The important part of the XML is pasted here, with a full link to the XSD and documentatio
I\'m trying to use ASMX/WCF to pass objects between sites (public / private).I can get the serialized object from my private ASMX service to my public WCF service, but I can\'t deserialize the object.
Instead of having to specify [DataMember] for every member, is there a sort of attribute that can just assume it is a datamember?
I have used .Net Reflection. Emit to create Dynamic Class and its fields. Now when I use Generic List of this dynamic class object in Silverlight enabled WCF service it is giving me an error on the re
I want to create / infer schema for data-contract serialized classes. When I use [DataContract(IsReference = true)] attribute the serializer is injecting attributes z:Id=\"i2\" and z:Ref=\"i2\" to r
I have a simple WCF service defined by the following ServiceContract: [ServiceContract] public interface IInventoryService
I\'m generating a dynamic type on the fly with a DataContract attribute and DataMembers. I\'ve verified the type is getting generated correctly with DataContract and DataMember attributes using reflec