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 a class with a lot of members that I have to serialize into a web service.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could use [Serializable] instead, but it’s going to cause you trouble in the future for versioning. Basically giving up [DataMember] means you can’t explicitly control serialization order for members of your contract, which means adding a new member can easily break existing clients (because of the default WCF behavior of ordering members in alphabetical order instead of order of declaration).