7 references to CreateProcessingInstruction
System.Data (1)
fx\src\data\System\NewXml\XmlDataDocument.cs (1)
973return this.CreateProcessingInstruction( dp.Name, dp.Value );
System.Xml (6)
System\Xml\Dom\DocumentXmlWriter.cs (1)
256XmlNode node = document.CreateProcessingInstruction(name, text);
System\Xml\Dom\XmlDocument.cs (2)
814newNode = CreateProcessingInstruction( node.Name, node.Value ); 952return CreateProcessingInstruction( name, string.Empty );
System\Xml\Dom\XmlLoader.cs (1)
188node = doc.CreateProcessingInstruction( r.Name, r.Value );
System\Xml\Dom\XmlProcessingInstruction.cs (1)
81return OwnerDocument.CreateProcessingInstruction( target, data );
System\Xml\Schema\Parser.cs (1)
272currentNode = dummyDocument.CreateProcessingInstruction( reader.Name, reader.Value );