Uses of Class
system.xml.linq.XNode
-
Packages that use XNode Package Description system.xml.linq system.xml.xpath -
-
Uses of XNode in system.xml.linq
Subclasses of XNode in system.xml.linq Modifier and Type Class Description class
XCData
The base .NET class managing System.Xml.Linq.XCData, System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089.class
XComment
The base .NET class managing System.Xml.Linq.XComment, System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089.class
XContainer
The base .NET class managing System.Xml.Linq.XContainer, System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089.class
XDocument
The base .NET class managing System.Xml.Linq.XDocument, System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089.class
XDocumentType
The base .NET class managing System.Xml.Linq.XDocumentType, System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089.class
XElement
The base .NET class managing System.Xml.Linq.XElement, System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089.class
XProcessingInstruction
The base .NET class managing System.Xml.Linq.XProcessingInstruction, System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089.class
XText
The base .NET class managing System.Xml.Linq.XText, System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089.Methods in system.xml.linq that return XNode Modifier and Type Method Description static XNode
XNode. cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoXNode
, a cast assert is made to check if types are compatible.XNode
XContainer. getFirstNode()
XNode
XContainer. getLastNode()
XNode
XNode. getNextNode()
XNode
XNode. getPreviousNode()
static XNode
XNode. ReadFrom(XmlReader reader)
Methods in system.xml.linq with parameters of type XNode Modifier and Type Method Description int
XNodeDocumentOrderComparer. Compare(XNode x, XNode y)
static int
XNode. CompareDocumentOrder(XNode n1, XNode n2)
static boolean
XNode. DeepEquals(XNode n1, XNode n2)
boolean
XNodeEqualityComparer. Equals(XNode x, XNode y)
int
XNodeEqualityComparer. GetHashCode(XNode obj)
boolean
XNode. IsAfter(XNode node)
boolean
XNode. IsBefore(XNode node)
-
Uses of XNode in system.xml.xpath
Methods in system.xml.xpath with parameters of type XNode Modifier and Type Method Description static XPathNavigator
Extensions. CreateNavigator(XNode node)
static XPathNavigator
Extensions. CreateNavigator(XNode node, XmlNameTable nameTable)
static IXPathNavigable
XDocumentExtensions. ToXPathNavigable(XNode node)
static NetObject
Extensions. XPathEvaluate(XNode node, String expression)
static NetObject
Extensions. XPathEvaluate(XNode node, String expression, IXmlNamespaceResolver resolver)
static XElement
Extensions. XPathSelectElement(XNode node, String expression)
static XElement
Extensions. XPathSelectElement(XNode node, String expression, IXmlNamespaceResolver resolver)
-