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