1 override of CreateProcessingInstruction
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\CanonicalXmlDocument.cs (1)
94
public override XmlProcessingInstruction
CreateProcessingInstruction
(string target, string? data)
7 references to CreateProcessingInstruction
System.Data.Common (1)
System\Xml\XmlDataDocument.cs (1)
1066
XmlNodeType.ProcessingInstruction =>
CreateProcessingInstruction
(dp.Name, dp.Value!),
System.Private.Xml (6)
System\Xml\Dom\DocumentXmlWriter.cs (1)
300
XmlNode node = _document.
CreateProcessingInstruction
(name, text!);
System\Xml\Dom\XmlDocument.cs (2)
989
newNode =
CreateProcessingInstruction
(node.Name, node.Value!);
1137
return
CreateProcessingInstruction
(name, string.Empty);
System\Xml\Dom\XmlLoader.cs (1)
210
node = _doc!.
CreateProcessingInstruction
(r.Name, r.Value);
System\Xml\Dom\XmlProcessingInstruction.cs (1)
83
return OwnerDocument.
CreateProcessingInstruction
(_target, _data);
System\Xml\Schema\Parser.cs (1)
309
currentNode = _dummyDocument.
CreateProcessingInstruction
(_reader.Name, _reader.Value);