vote up 2 vote down star

I have a class that is serialized to a XML file. There are several properties that are rarely used but always created. If I delete them within the XML the deserialization still works, because they have the default value.

These unnecessary (bool) attributes make the XML harder to read.

Can I somehow tell C# to omit elements or attributes that still have default value?

flag

3 Answers

vote up 8 vote down check

Specify the DefaultValueAttribute, and if the value matches, it won't be output.

link|flag
´[System.ComponentModel.DefaultValue(false)]´ did it for bool values - Thank you :) – MrFox Apr 24 at 10:19
vote up 4 vote down

Rowland has the answer for simple values. For more complex scenarios, you can add a method called public bool ShouldSerializeFoo() (for property Foo) - it it returns false, it won't get serialized.

link|flag
I would just like to mention the EditorBrowsableAttribute which can be used to prevent auxiliary members like these from appearing in IntelliSense. – Tormod Fjeldskår Apr 24 at 10:19
Instead of ShouldSerializeFoo(), a bool FooSpecified Property can also be used. – David Schmitt Apr 24 at 11:15
If you go with the *Specified patter, you need to remember to mark it [XmlIgnore], IIRC – Marc Gravell Apr 24 at 11:18
vote up 0 vote down

Use the XMLIgnore() Attribute to mark a property to be ingnored in Serialization / Deserialization.

link|flag
No, that will alays exclude it; the question is to exclude it when it has the default value. – Marc Gravell Apr 24 at 10:15
1  
I think OP wants to just ignore properties that have a default value. Your solution would cause properties to always be ignored. – Tormod Fjeldskår Apr 24 at 10:15

Your Answer

Get an OpenID
or

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