6 references to OmitDuplicates
System.Private.Xml (3)
System\Xml\Core\XmlWellFormedWriter.cs (2)
254
_omitDuplNamespaces = (settings.NamespaceHandling & NamespaceHandling.
OmitDuplicates
) != 0;
313
settings.NamespaceHandling |= NamespaceHandling.
OmitDuplicates
;
System\Xml\Core\XmlWriterSettings.cs (1)
211
ArgumentOutOfRangeException.ThrowIfGreaterThan(unchecked((uint)value), (uint)NamespaceHandling.
OmitDuplicates
, nameof(value));
System.Private.Xml.Linq (3)
System\Xml\Linq\XNode.cs (2)
688
if ((o & SaveOptions.OmitDuplicateNamespaces) != 0) ws.NamespaceHandling |= NamespaceHandling.
OmitDuplicates
;
699
if ((o & SaveOptions.OmitDuplicateNamespaces) != 0) ws.NamespaceHandling |= NamespaceHandling.
OmitDuplicates
;
System\Xml\Linq\XStreamingElement.cs (1)
233
if ((o & SaveOptions.OmitDuplicateNamespaces) != 0) ws.NamespaceHandling |= NamespaceHandling.
OmitDuplicates
;