1 write to _document
System.Private.Xml (1)
System\Xml\Dom\DocumentXmlWriter.cs (1)
72_document = document;
20 references to _document
System.Private.Xml (20)
System\Xml\Dom\DocumentXmlWriter.cs (20)
121XmlNode node = _document.CreateXmlDeclaration("1.0", string.Empty, standalone == XmlStandalone.Yes ? "yes" : "no"); 131XmlNode node = _document.CreateXmlDeclaration(version!, encoding, standalone); 153XmlNode node = _document.CreateDocumentType(name, pubid, sysid, subset); 160XmlNode node = _document.CreateElement(prefix, localName, ns); 207XmlAttribute attr = _document.CreateAttribute(prefix, localName, ns); 223XmlNode node = _document.CreateTextNode(string.Empty); 251attr = _document.CreateAttribute(prefix, _document.strXmlns, _document.strReservedXmlns); 255attr = _document.CreateAttribute(_document.strXmlns, prefix, _document.strReservedXmlns); 273XmlNode node = _document.CreateTextNode(string.Empty); 284XmlNode node = _document.CreateCDataSection(text); 292XmlNode node = _document.CreateComment(text); 300XmlNode node = _document.CreateProcessingInstruction(name, text!); 307XmlNode node = _document.CreateEntityReference(name); 321if (_document.PreserveWhitespace) 323XmlNode node = _document.CreateWhitespace(text); 332XmlNode node = _document.CreateTextNode(text);