1 write to document
System.Xml (1)
System\Xml\Dom\DocumentXmlWriter.cs (1)
70this.document = document;
20 references to document
System.Xml (20)
System\Xml\Dom\DocumentXmlWriter.cs (20)
113XmlNode node = document.CreateXmlDeclaration("1.0", string.Empty, standalone == XmlStandalone.Yes ? "yes" : "no"); 122XmlNode node = document.CreateXmlDeclaration(version, encoding, standalone); 140XmlNode node = document.CreateDocumentType(name, pubid, sysid, subset); 146XmlNode node = document.CreateElement(prefix, localName, ns); 183XmlAttribute attr = document.CreateAttribute(prefix, localName, ns); 195XmlNode node = document.CreateTextNode(string.Empty); 217attr = document.CreateAttribute(prefix, document.strXmlns, document.strReservedXmlns); 220attr = document.CreateAttribute(document.strXmlns, prefix, document.strReservedXmlns); 233XmlNode node = document.CreateTextNode(string.Empty); 242XmlNode node = document.CreateCDataSection(text); 249XmlNode node = document.CreateComment(text); 256XmlNode node = document.CreateProcessingInstruction(name, text); 262XmlNode node = document.CreateEntityReference(name); 274if (document.PreserveWhitespace) { 275XmlNode node = document.CreateWhitespace(text); 283XmlNode node = document.CreateTextNode(text);