vote up 0 vote down star

I have some public members I don't want to be serialized, was wondering if there is an attribute for it?

flag

56% accept rate

5 Answers

vote up 6 vote down check

You are looking for XmlIgnore

link|flag
vote up 0 vote down

Following on from Azheglov's comment regarding the "Specified" suffix, the DefaultValue attribute is also considered when serializing, and a value won't be serialized at all if it is the default.

link|flag
vote up 2 vote down

Use XmlIgnoreAttribute to do it statically, as others advised you.

You can also do it dynamically. Suppose you have a serializable property Name. Then the following:

[XmlIgnore]
public bool NameSpecified {
    get {
        // your logic here
    }
}

If this special property getter returns true, Name will be included in the output XML document, otherwise, it won't be included. NameSpecified itself is marked with [XmlIgnore] because you obviously don't want to include it.

link|flag
vote up 2 vote down

Use XmlIgnore attribute

link|flag
vote up 4 vote down

XmlIgnore will do the trick.

link|flag

Your Answer

Get an OpenID
or

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