Gets or sets a value that specifies whether or not the System.Xml.Serialization.XmlSerializer serializes a public field or public read/write property.
Documentation for this section has not yet been entered.
By default, all public fields and public read/write properties are serialized by the System.Xml.Serialization.XmlSerializer. That is, the value of each public field or property is persisted as an XML element or XML attribute in an XML-document instance.
To override the default serialization of a field or property, create an System.Xml.Serialization.XmlAttributes object, and set its XmlAttributes.XmlIgnore property to true. XmlAttributeOverrides.Add(Type, XmlAttributes) the object to an System.Xml.Serialization.XmlAttributeOverrides object and specify the type of the object that contains the field or property to ignore, and the name of the field or property to ignore.
If an System.Xml.Serialization.XmlIgnoreAttribute is applied to a field or property, the field or property is ignored. However you can override that behavior by creating an System.Xml.Serialization.XmlAttributes object, setting its XmlAttributes.XmlIgnore property to false, adding it to an System.Xml.Serialization.XmlAttributeOverrides object specifying the type of the object that contains the field or property, and the name of the field or property.