4 implementations of IXPathNavigable
System.Private.Xml (3)
System\Xml\Dom\XmlNode.cs (1)
19
public abstract class XmlNode : ICloneable, IEnumerable,
IXPathNavigable
System\Xml\XPath\XPathDocument.cs (1)
17
public class XPathDocument :
IXPathNavigable
System\Xml\XPath\XPathNavigator.cs (1)
22
public abstract class XPathNavigator : XPathItem, ICloneable,
IXPathNavigable
, IXmlNamespaceResolver
System.Xml.XPath.XDocument (1)
System\Xml\XPath\XDocumentExtensions.cs (1)
10
private sealed class XDocumentNavigable :
IXPathNavigable
36 references to IXPathNavigable
netstandard (1)
netstandard.cs (1)
2512
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.XPath.
IXPathNavigable
))]
System.Private.Xml (30)
System\Xml\XPath\Internal\ExtensionQuery.cs (2)
105
IXPathNavigable
? navigable = value as
IXPathNavigable
;
System\Xml\Xsl\Runtime\XmlQueryContext.cs (1)
191
else if (dataSource is
IXPathNavigable
xPathNavigable)
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (2)
630
IXPathNavigable
? navigable;
664
navigable = value as
IXPathNavigable
;
System\Xml\Xsl\Runtime\XsltConvert.cs (1)
358
if (clrType == typeof(
IXPathNavigable
)) return XmlQueryTypeFactory.NodeNotRtf;
System\Xml\Xsl\Xslt\XsltLoader.cs (4)
89
IXPathNavigable
? navigable = stylesheet as
IXPathNavigable
;
216
IXPathNavigable
? navigable = input as
IXPathNavigable
;
System\Xml\Xsl\XsltOld\NavigatorOutput.cs (1)
17
get { return ((
IXPathNavigable
)_doc).CreateNavigator()!; }
System\Xml\Xsl\XsltOld\Processor.cs (1)
185
result = ((
IXPathNavigable
)Compiler.LoadDocument(tr)).CreateNavigator();
System\Xml\Xsl\XsltOld\XsltCompileContext.cs (1)
553
if (typeof(XPathNavigator).IsAssignableFrom(type) || typeof(
IXPathNavigable
).IsAssignableFrom(type))
System\Xml\Xslt\XslCompiledTransform.cs (7)
99
public void Load(
IXPathNavigable
stylesheet)
107
public void Load(
IXPathNavigable
stylesheet, XsltSettings? settings, XmlResolver? stylesheetResolver)
242
public void Transform(
IXPathNavigable
input, XmlWriter results)
250
public void Transform(
IXPathNavigable
input, XsltArgumentList? arguments, XmlWriter results)
258
public void Transform(
IXPathNavigable
input, XsltArgumentList? arguments, TextWriter results)
267
public void Transform(
IXPathNavigable
input, XsltArgumentList? arguments, Stream results)
387
public void Transform(
IXPathNavigable
input, XsltArgumentList? arguments, XmlWriter results, XmlResolver? documentResolver)
System\Xml\Xslt\XslTransform.cs (10)
61
public void Load(
IXPathNavigable
stylesheet)
65
public void Load(
IXPathNavigable
stylesheet, XmlResolver? resolver)
165
public XmlReader Transform(
IXPathNavigable
input, XsltArgumentList? args, XmlResolver? resolver)
172
public XmlReader Transform(
IXPathNavigable
input, XsltArgumentList? args)
178
public void Transform(
IXPathNavigable
input, XsltArgumentList? args, TextWriter output, XmlResolver? resolver)
185
public void Transform(
IXPathNavigable
input, XsltArgumentList? args, TextWriter output)
192
public void Transform(
IXPathNavigable
input, XsltArgumentList? args, Stream output, XmlResolver? resolver)
199
public void Transform(
IXPathNavigable
input, XsltArgumentList? args, Stream output)
206
public void Transform(
IXPathNavigable
input, XsltArgumentList? args, XmlWriter output, XmlResolver? resolver)
213
public void Transform(
IXPathNavigable
input, XsltArgumentList? args, XmlWriter output)
System.Speech (1)
artifacts\obj\System.Speech\Debug\net10.0\System.Speech.notsupported.cs (1)
236
public System.Xml.XPath.
IXPathNavigable
ConstructSmlFromSemantics() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_SystemSpeech); }
System.Xml (1)
System.Xml.cs (1)
178
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.XPath.
IXPathNavigable
))]
System.Xml.ReaderWriter (1)
artifacts\obj\System.Xml.ReaderWriter\Debug\net10.0\System.Xml.ReaderWriter.Forwards.cs (1)
168
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.XPath.
IXPathNavigable
))]
System.Xml.XPath (1)
artifacts\obj\System.Xml.XPath\Debug\net10.0\System.Xml.XPath.Forwards.cs (1)
4
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.XPath.
IXPathNavigable
))]
System.Xml.XPath.XDocument (1)
System\Xml\XPath\XDocumentExtensions.cs (1)
22
public static
IXPathNavigable
ToXPathNavigable(this XNode node)