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)
121
XmlNode node =
_document
.CreateXmlDeclaration("1.0", string.Empty, standalone == XmlStandalone.Yes ? "yes" : "no");
131
XmlNode node =
_document
.CreateXmlDeclaration(version!, encoding, standalone);
153
XmlNode node =
_document
.CreateDocumentType(name, pubid, sysid, subset);
160
XmlNode node =
_document
.CreateElement(prefix, localName, ns);
207
XmlAttribute attr =
_document
.CreateAttribute(prefix, localName, ns);
223
XmlNode node =
_document
.CreateTextNode(string.Empty);
251
attr =
_document
.CreateAttribute(prefix,
_document
.strXmlns,
_document
.strReservedXmlns);
255
attr =
_document
.CreateAttribute(
_document
.strXmlns, prefix,
_document
.strReservedXmlns);
273
XmlNode node =
_document
.CreateTextNode(string.Empty);
284
XmlNode node =
_document
.CreateCDataSection(text);
292
XmlNode node =
_document
.CreateComment(text);
300
XmlNode node =
_document
.CreateProcessingInstruction(name, text!);
307
XmlNode node =
_document
.CreateEntityReference(name);
321
if (
_document
.PreserveWhitespace)
323
XmlNode node =
_document
.CreateWhitespace(text);
332
XmlNode node =
_document
.CreateTextNode(text);