I have some public members I don't want to be serialized, was wondering if there is an attribute for it?
|
|
|
|
|
|
|
You are looking for XmlIgnore |
||
|
|
|
|
Following on from Azheglov's comment regarding the "Specified" suffix, the |
||
|
|
|
|
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:
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. |
||
|
|
|
|
Use XmlIgnore attribute |
||
|
|
|
|
|
||
|
|
