20 references to DocumentXmlWriterType
dotnet-svcutil-lib (20)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXmlWriter.cs (14)
60private DocumentXmlWriterType _type; // writer type 71public DocumentXmlWriter(DocumentXmlWriterType type, XmlNode start, XmlDocument document) 372case DocumentXmlWriterType.InsertSiblingAfter: 383case DocumentXmlWriterType.InsertSiblingBefore: 394case DocumentXmlWriterType.PrependChild: 400case DocumentXmlWriterType.AppendChild: 406case DocumentXmlWriterType.AppendAttribute: 409case DocumentXmlWriterType.ReplaceToFollowingSibling: 531case DocumentXmlWriterType.InsertSiblingAfter: 532case DocumentXmlWriterType.InsertSiblingBefore: 547case DocumentXmlWriterType.PrependChild: 548case DocumentXmlWriterType.AppendChild: 559case DocumentXmlWriterType.AppendAttribute: 561case DocumentXmlWriterType.ReplaceToFollowingSibling:
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXPathNavigator.cs (6)
1527DocumentXmlWriter writer = new DocumentXmlWriter(DocumentXmlWriterType.PrependChild, _source, _document); 1544DocumentXmlWriter writer = new DocumentXmlWriter(DocumentXmlWriterType.AppendChild, _source, _document); 1569DocumentXmlWriter writer = new DocumentXmlWriter(DocumentXmlWriterType.InsertSiblingAfter, node, _document); 1593DocumentXmlWriter writer = new DocumentXmlWriter(DocumentXmlWriterType.InsertSiblingBefore, _source, _document); 1605DocumentXmlWriter writer = new DocumentXmlWriter(DocumentXmlWriterType.AppendAttribute, _source, _document); 1661DocumentXmlWriter writer = new DocumentXmlWriter(DocumentXmlWriterType.ReplaceToFollowingSibling, node, _document);