20 references to DocumentXmlWriterType
System.Private.Xml (20)
System\Xml\Dom\DocumentXmlWriter.cs (14)
57private readonly DocumentXmlWriterType _type; // writer type 68public DocumentXmlWriter(DocumentXmlWriterType type, XmlNode start, XmlDocument document) 371case DocumentXmlWriterType.InsertSiblingAfter: 384case DocumentXmlWriterType.InsertSiblingBefore: 397case DocumentXmlWriterType.PrependChild: 404case DocumentXmlWriterType.AppendChild: 411case DocumentXmlWriterType.AppendAttribute: 414case DocumentXmlWriterType.ReplaceToFollowingSibling: 542case DocumentXmlWriterType.InsertSiblingAfter: 543case DocumentXmlWriterType.InsertSiblingBefore: 560case DocumentXmlWriterType.PrependChild: 561case DocumentXmlWriterType.AppendChild: 573case DocumentXmlWriterType.AppendAttribute: 575case DocumentXmlWriterType.ReplaceToFollowingSibling:
System\Xml\Dom\DocumentXPathNavigator.cs (6)
1512DocumentXmlWriter writer = new DocumentXmlWriter(DocumentXmlWriterType.PrependChild, _source, _document); 1529DocumentXmlWriter writer = new DocumentXmlWriter(DocumentXmlWriterType.AppendChild, _source, _document); 1554DocumentXmlWriter writer = new DocumentXmlWriter(DocumentXmlWriterType.InsertSiblingAfter, node, _document); 1578DocumentXmlWriter writer = new DocumentXmlWriter(DocumentXmlWriterType.InsertSiblingBefore, _source, _document); 1590DocumentXmlWriter writer = new DocumentXmlWriter(DocumentXmlWriterType.AppendAttribute, _source, _document); 1639DocumentXmlWriter writer = new DocumentXmlWriter(DocumentXmlWriterType.ReplaceToFollowingSibling, node, _document);