6 references to CreateProcessingInstruction
dotnet-svcutil-lib (6)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXmlWriter.cs (1)
301
XmlNode node = _document.
CreateProcessingInstruction
(name, text);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (2)
924
newNode =
CreateProcessingInstruction
(node.Name, node.Value);
1077
return
CreateProcessingInstruction
(name, string.Empty);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (1)
216
node = _doc.
CreateProcessingInstruction
(r.Name, r.Value);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlProcessingInstruction.cs (1)
91
return OwnerDocument.
CreateProcessingInstruction
(_target, _data);
FrameworkFork\Microsoft.Xml\Xml\schema\Parser.cs (1)
312
currentNode = _dummyDocument.
CreateProcessingInstruction
(_reader.Name, _reader.Value);