I've discovered that if a serializable Field/Property has a corresponding field of type Boolean having as a name the Field/Property name with "Specified" suffix, the XmlSerializer conditionally exclude that Field/Property from the serialization process. Nice!

So, I want to avoid the definition of those fields, and add them dynamically, at runtime...

Reading this, I found an interesting interface IReflect, which I can use to "emulate" dynamic fields which are used by the XmlSerializer instances to exclude certain fields.

Would this work?

link|improve this question

80% accept rate
Can you comment on why you want to avoid those fields and do this at runtime? Do you want to serialize classes differently based upon some runtime calculated values, or you just want to avoid adding this additional properties? – Martin Peck Nov 23 '10 at 23:56
feedback

1 Answer

up vote 2 down vote accepted

If you want to take control of your xml serialization then you have two options. The first (which might not be appropriate here) it to use the attributes in the System.Xml.Serialization namespace to exclude properties. If you really need to do determine what gets serialized at runtime this might not be the best course of action.

See Attributes That Control XML Serialization

The other way to do this is to implement the IXmlSerializable interface on your class and implement the ReadXml and WriteXml methods. This allows you to take control of exactly how your xml looks. See this question for additional info:

custom xml serialization

However, as mentioned here Mixing custom and basic serialization? once you implement IXmlSerializable you are responsible for all the serialization logic for your type.

link|improve this answer
please don't post .NET 1.1 links unless explicitly requested. – John Saunders Nov 24 '10 at 0:43
Thanks for accepting the answer. Wow! Just realised that it was almost 1 year ago that I answered :-) – Martin Peck Nov 18 '11 at 22:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.