C# Class FatAntelope.XNode

Represents a single XNode within the XTree. Maps to a single XML element, attribute or text node within the underlying XML document.
Afficher le fichier Open project: CameronWills/FatAntelope Class Usage Examples

Méthodes publiques

Méthode Description
Build ( XmlNode node, XNode parent ) : XNode
GetDescendantCount ( ) : int
HashEquals ( byte hash2 ) : bool
IsAttribute ( ) : bool
IsElement ( ) : bool
IsText ( ) : bool
XNode ( XmlNode node, XNode parent ) : System.Collections.Generic

Constructor.

Private Methods

Méthode Description
ConcatAll ( List arrays, int length ) : byte[]

Method Details

Build() public static méthode

public static Build ( XmlNode node, XNode parent ) : XNode
node System.Xml.XmlNode
parent XNode
Résultat XNode

GetDescendantCount() public méthode

public GetDescendantCount ( ) : int
Résultat int

HashEquals() public méthode

public HashEquals ( byte hash2 ) : bool
hash2 byte
Résultat bool

IsAttribute() public méthode

public IsAttribute ( ) : bool
Résultat bool

IsElement() public méthode

public IsElement ( ) : bool
Résultat bool

IsText() public méthode

public IsText ( ) : bool
Résultat bool

XNode() public méthode

Constructor.
public XNode ( XmlNode node, XNode parent ) : System.Collections.Generic
node System.Xml.XmlNode The respective System.Xml.XmlNode instance that this XNode maps to from the original XmlDocument.
parent XNode The parent XNode of this node in the XML Hierarchy
Résultat System.Collections.Generic