8 instantiations of XProcessingInstruction
System.Private.Xml.Linq (8)
System\Xml\Linq\XContainer.cs (4)
938
_currentContainer.AddNodeSkipNotify(new
XProcessingInstruction
(r.Name, r.Value));
994
_currentContainer.AddNodeSkipNotify(new
XProcessingInstruction
(r.Name, await r.GetValueAsync().ConfigureAwait(false)));
1092
newNode = new
XProcessingInstruction
(r.Name, r.Value);
1208
newNode = new
XProcessingInstruction
(r.Name, await r.GetValueAsync().ConfigureAwait(false));
System\Xml\Linq\XNode.cs (2)
446
return new
XProcessingInstruction
(reader);
506
ret = new
XProcessingInstruction
(target, data);
System\Xml\Linq\XNodeBuilder.cs (1)
153
AddNode(new
XProcessingInstruction
(name, text!));
System\Xml\Linq\XProcessingInstruction.cs (1)
145
return new
XProcessingInstruction
(this);
24 references to XProcessingInstruction
netstandard (1)
netstandard.cs (1)
2282
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Linq.
XProcessingInstruction
))]
System.Private.Xml.Linq (21)
System\Xml\Linq\XDocument.cs (1)
24
/// <item>Zero or more <see cref="
XProcessingInstruction
"/> objects.</item>
System\Xml\Linq\XElement.cs (1)
31
/// <item><see cref="
XProcessingInstruction
"/></item>
System\Xml\Linq\XNode.cs (2)
24
/// <see cref="
XProcessingInstruction
"/>,
599
/// Two <see cref="
XProcessingInstruction
"/> nodes are equal if they have the same
System\Xml\Linq\XNodeEqualityComparer.cs (2)
33
/// Two <see cref="
XProcessingInstruction
"/> nodes are equal if they have the same
72
/// Two <see cref="
XProcessingInstruction
"/> nodes are equal if they have the same
System\Xml\Linq\XNodeReader.cs (3)
214
XProcessingInstruction
? p = _source as
XProcessingInstruction
;
377
return ((
XProcessingInstruction
)o).Data;
System\Xml\Linq\XProcessingInstruction.cs (9)
21
/// The target application for this <see cref="
XProcessingInstruction
"/>.
24
/// The string data that comprises the <see cref="
XProcessingInstruction
"/>.
43
public XProcessingInstruction(
XProcessingInstruction
other)
115
/// Writes this <see cref="
XProcessingInstruction
"/> to the passed in <see cref="XmlWriter"/>.
118
/// The <see cref="XmlWriter"/> to write this <see cref="
XProcessingInstruction
"/> to.
128
/// Writes this <see cref="
XProcessingInstruction
"/> to the passed in <see cref="XmlWriter"/>.
131
/// The <see cref="XmlWriter"/> to write this <see cref="
XProcessingInstruction
"/> to.
150
XProcessingInstruction
? other = node as
XProcessingInstruction
;
System\Xml\XPath\XNodeNavigator.cs (3)
148
XProcessingInstruction
? p = _source as
XProcessingInstruction
;
287
return ((
XProcessingInstruction
)_source).Data;
System.Xml.Linq (1)
System.Xml.Linq.cs (1)
24
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Linq.
XProcessingInstruction
))]
System.Xml.XDocument (1)
artifacts\obj\System.Xml.XDocument\Debug\net10.0\System.Xml.XDocument.Forwards.cs (1)
23
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Linq.
XProcessingInstruction
))]