6 references to IsNullable
dotnet-svcutil-lib (6)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionImporter.cs (5)
278if (root.IsNullableSpecified && !root.IsNullable && model.TypeDesc.IsOptionalValue) 281element.IsNullable = root.IsNullableSpecified ? root.IsNullable : model.TypeDesc.IsNullable || model.TypeDesc.IsOptionalValue; 1351xmlElement.IsNullable = structAttrs.XmlRoot.IsNullable; 1356xmlElement.IsNullable = structAttrs.XmlRoot.IsNullable; 1370CheckNullable(a.XmlRoot.IsNullable, typeDesc, null);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlDataContract.cs (1)
262_isTopLevelElementNullable = xmlRootAttribute.IsNullable;