I have a base class that a number of other classes inherit from. The base class supports XML serialization and has a property that is serializaed.
I would like to keep that same property from serializing in one of the child classes. Is this possible? How do I do it?
Thanks
Tony
You can use the
XmlIgnoreAttribute. See this article.http://msdn.microsoft.com/en-us/library/system.xml.serialization.xmlattributes.xmlignore.aspx