Gets or sets a value that specifies whether the System.Xml.Serialization.XmlSerializer serializes a public field or property as encoded SOAP XML.
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.
To override the default serialization of a field or property, create a System.Xml.Serialization.SoapAttributes, and set its SoapAttributes.SoapIgnore property to true. Use the SoapAttributeOverrides.Add(Type, SoapAttributes) method to add the object to a System.Xml.Serialization.SoapAttributeOverrides 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 a System.Xml.Serialization.SoapIgnoreAttribute is applied to a field or property, the field or property is ignored. However you can override that behavior by creating a System.Xml.Serialization.SoapAttributes, setting its SoapAttributes.SoapIgnore property to false, and adding it to a System.Xml.Serialization.SoapAttributeOverrides, specifying the type of the object that contains the field or property and the name of the field or property.