C# 클래스 FatAntelope.XNode

Represents a single XNode within the XTree. Maps to a single XML element, attribute or text node within the underlying XML document.
파일 보기 프로젝트 열기: CameronWills/FatAntelope 1 사용 예제들

공개 메소드들

메소드 설명
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.

비공개 메소드들

메소드 설명
ConcatAll ( List arrays, int length ) : byte[]

메소드 상세

Build() 공개 정적인 메소드

public static Build ( XmlNode node, XNode parent ) : XNode
node System.Xml.XmlNode
parent XNode
리턴 XNode

GetDescendantCount() 공개 메소드

public GetDescendantCount ( ) : int
리턴 int

HashEquals() 공개 메소드

public HashEquals ( byte hash2 ) : bool
hash2 byte
리턴 bool

IsAttribute() 공개 메소드

public IsAttribute ( ) : bool
리턴 bool

IsElement() 공개 메소드

public IsElement ( ) : bool
리턴 bool

IsText() 공개 메소드

public IsText ( ) : bool
리턴 bool

XNode() 공개 메소드

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
리턴 System.Collections.Generic