3 writes to IsNullable
System.Xml (3)
System\Xml\Serialization\XmlReflectionImporter.cs (3)
1175xmlElement.IsNullable = structAttrs.XmlRoot.IsNullable; 1179xmlElement.IsNullable = structAttrs.XmlRoot.IsNullable; 1889xmlElement.IsNullable = typeDesc.IsOptionalValue;
7 references to IsNullable
System.Xml (7)
System\Xml\Serialization\XmlReflectionImporter.cs (7)
1436if (xmlElement.IsNullableSpecified && !xmlElement.IsNullable && typeModel.TypeDesc.IsOptionalValue) 1439element.IsNullable = xmlElement.IsNullableSpecified ? xmlElement.IsNullable : typeModel.TypeDesc.IsOptionalValue; 1590if (xmlElement.IsNullableSpecified && !xmlElement.IsNullable && typeModel.TypeDesc.IsOptionalValue) 1593element.IsNullable = xmlElement.IsNullableSpecified ? xmlElement.IsNullable : typeModel.TypeDesc.IsOptionalValue; 1647if (xmlElement.IsNullableSpecified && !xmlElement.IsNullable && typeModel.TypeDesc.IsOptionalValue) 1650element.IsNullable = xmlElement.IsNullableSpecified ? xmlElement.IsNullable : typeModel.TypeDesc.IsOptionalValue; 1794if (xmlElement.IsNullable) {