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