Gets or sets a value that indicates whether the System.Xml.Serialization.XmlSerializer must serialize a member that has the xsi:null attribute set to "1".
Documentation for this section has not yet been entered.
The XML schema specification for structures allows an XML document to explicitly signal that an element's content is missing. Such an element contains the attribute xsi:null set to "1". For more information, see the World Wide Web Consortium (www.w3.org) specification named "XML Schema Part 1: Structures".
If the SoapElementAttribute.IsNullable property is set to true, the xsi:null attribute is generated for class members that have been set to null. For example, if you set a field named MyStringArray to null, the System.Xml.Serialization.XmlSerializer generates the following XML code.
Example
<MyStringArray xsi:null = "1" />
If the XmlElementAttribute.IsNullable property is false, no XML element is generated.
You cannot apply the XmlElementAttribute.IsNullable property to a member typed as a value type because a value type cannot contain null.