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