20 references to DocumentXmlWriterType
System.Xml (20)
System\Xml\Dom\DocumentXmlWriter.cs (14)
56DocumentXmlWriterType type; // writer type 67public DocumentXmlWriter(DocumentXmlWriterType type, XmlNode start, XmlDocument document) { 313case DocumentXmlWriterType.InsertSiblingAfter: 322case DocumentXmlWriterType.InsertSiblingBefore: 331case DocumentXmlWriterType.PrependChild: 336case DocumentXmlWriterType.AppendChild: 341case DocumentXmlWriterType.AppendAttribute: 344case DocumentXmlWriterType.ReplaceToFollowingSibling: 441case DocumentXmlWriterType.InsertSiblingAfter: 442case DocumentXmlWriterType.InsertSiblingBefore: 454case DocumentXmlWriterType.PrependChild: 455case DocumentXmlWriterType.AppendChild: 464case DocumentXmlWriterType.AppendAttribute: 466case DocumentXmlWriterType.ReplaceToFollowingSibling:
System\Xml\Dom\DocumentXPathNavigator.cs (6)
1249DocumentXmlWriter writer = new DocumentXmlWriter(DocumentXmlWriterType.PrependChild, source, document); 1264DocumentXmlWriter writer = new DocumentXmlWriter(DocumentXmlWriterType.AppendChild, source, document); 1287DocumentXmlWriter writer = new DocumentXmlWriter(DocumentXmlWriterType.InsertSiblingAfter, node, document); 1309DocumentXmlWriter writer = new DocumentXmlWriter(DocumentXmlWriterType.InsertSiblingBefore, source, document); 1319DocumentXmlWriter writer = new DocumentXmlWriter(DocumentXmlWriterType.AppendAttribute, source, document); 1366DocumentXmlWriter writer = new DocumentXmlWriter(DocumentXmlWriterType.ReplaceToFollowingSibling, node, document);