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)
129XmlNode node = _document.CreateXmlDeclaration("1.0", string.Empty, standalone == XmlStandalone.Yes ? "yes" : "no"); 139XmlNode node = _document.CreateXmlDeclaration(version, encoding, standalone); 161XmlNode node = _document.CreateDocumentType(name, pubid, sysid, subset); 168XmlNode node = _document.CreateElement(prefix, localName, ns); 213XmlAttribute attr = _document.CreateAttribute(prefix, localName, ns); 228XmlNode node = _document.CreateTextNode(string.Empty); 255attr = _document.CreateAttribute(prefix, _document.strXmlns, _document.strReservedXmlns); 259attr = _document.CreateAttribute(_document.strXmlns, prefix, _document.strReservedXmlns); 275XmlNode node = _document.CreateTextNode(string.Empty); 285XmlNode node = _document.CreateCDataSection(text); 293XmlNode node = _document.CreateComment(text); 301XmlNode node = _document.CreateProcessingInstruction(name, text); 308XmlNode node = _document.CreateEntityReference(name); 322if (_document.PreserveWhitespace) 324XmlNode node = _document.CreateWhitespace(text); 333XmlNode node = _document.CreateTextNode(text);