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