5 instantiations of XProcessingInstruction
System.Xml.Linq (5)
System\Xml\Linq\XLinq.cs (5)
1846return new XProcessingInstruction(reader); 3067c.AddNodeSkipNotify(new XProcessingInstruction(r.Name, r.Value)); 3166n = new XProcessingInstruction(r.Name, r.Value); 6232return new XProcessingInstruction(this); 7979AddNode(new XProcessingInstruction(name, text));
19 references to XProcessingInstruction
System.Xml.Linq (19)
System\Xml\Linq\XLinq.cs (16)
1452/// <see cref="XProcessingInstruction"/>, 1928/// Two <see cref="XProcessingInstruction"/> nodes are equal if they have the same 2104/// Two <see cref="XProcessingInstruction"/> nodes are equal if they have the same 2142/// Two <see cref="XProcessingInstruction"/> nodes are equal if they have the same 3434/// <item><see cref="XProcessingInstruction"/></item> 5402/// <item>Zero or more <see cref="XProcessingInstruction"/> objects.</item> 6140/// The target application for this <see cref="XProcessingInstruction"/>. 6143/// The string data that comprises the <see cref="XProcessingInstruction"/>. 6160public XProcessingInstruction(XProcessingInstruction other) { 6221/// Writes this <see cref="XProcessingInstruction"/> to the passed in <see cref="XmlWriter"/>. 6224/// The <see cref="XmlWriter"/> to write this <see cref="XProcessingInstruction"/> to. 6236XProcessingInstruction other = node as XProcessingInstruction; 8228XProcessingInstruction p = source as XProcessingInstruction; 8356return ((XProcessingInstruction)o).Data;
System\Xml\Linq\XNodeNavigator.cs (3)
135XProcessingInstruction p = source as XProcessingInstruction; 256return ((XProcessingInstruction)o).Data;