1 write to _document
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXmlWriter.cs (1)
75
_document
= document;
20 references to _document
dotnet-svcutil-lib (20)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXmlWriter.cs (20)
129
XmlNode node =
_document
.CreateXmlDeclaration("1.0", string.Empty, standalone == XmlStandalone.Yes ? "yes" : "no");
139
XmlNode node =
_document
.CreateXmlDeclaration(version, encoding, standalone);
161
XmlNode node =
_document
.CreateDocumentType(name, pubid, sysid, subset);
168
XmlNode node =
_document
.CreateElement(prefix, localName, ns);
213
XmlAttribute attr =
_document
.CreateAttribute(prefix, localName, ns);
228
XmlNode node =
_document
.CreateTextNode(string.Empty);
255
attr =
_document
.CreateAttribute(prefix,
_document
.strXmlns,
_document
.strReservedXmlns);
259
attr =
_document
.CreateAttribute(
_document
.strXmlns, prefix,
_document
.strReservedXmlns);
275
XmlNode node =
_document
.CreateTextNode(string.Empty);
285
XmlNode node =
_document
.CreateCDataSection(text);
293
XmlNode node =
_document
.CreateComment(text);
301
XmlNode node =
_document
.CreateProcessingInstruction(name, text);
308
XmlNode node =
_document
.CreateEntityReference(name);
322
if (
_document
.PreserveWhitespace)
324
XmlNode node =
_document
.CreateWhitespace(text);
333
XmlNode node =
_document
.CreateTextNode(text);