C# Class Nxdb.Node.TreeNode

Base class for nodes that are part of a tree (all except attributes).
Inheritance: Node
Afficher le fichier Open project: daveaglick/Nxdb

Méthodes publiques

Méthode Description
InsertAfter ( ) : void
InsertAfter ( IEnumerable nodes ) : void
InsertAfter ( XmlReader xmlReader ) : void

Inserts the specified content after this node.

InsertAfter ( string content ) : void
InsertBefore ( ) : void
InsertBefore ( IEnumerable nodes ) : void
InsertBefore ( XmlReader xmlReader ) : void

Inserts the specified content before this node.

InsertBefore ( string content ) : void

Méthodes protégées

Méthode Description
TreeNode ( ANode aNode, int kind, Database database ) : System

Private Methods

Méthode Description
InsertAfter ( NodeCache nodeCache ) : void
InsertBefore ( NodeCache nodeCache ) : void

Method Details

InsertAfter() public méthode

public InsertAfter ( ) : void
Résultat void

InsertAfter() public méthode

public InsertAfter ( IEnumerable nodes ) : void
nodes IEnumerable
Résultat void

InsertAfter() public méthode

Inserts the specified content after this node.
public InsertAfter ( XmlReader xmlReader ) : void
xmlReader System.Xml.XmlReader The XML reader to get content from.
Résultat void

InsertAfter() public méthode

public InsertAfter ( string content ) : void
content string
Résultat void

InsertBefore() public méthode

public InsertBefore ( ) : void
Résultat void

InsertBefore() public méthode

public InsertBefore ( IEnumerable nodes ) : void
nodes IEnumerable
Résultat void

InsertBefore() public méthode

Inserts the specified content before this node.
public InsertBefore ( XmlReader xmlReader ) : void
xmlReader System.Xml.XmlReader The XML reader to get content from.
Résultat void

InsertBefore() public méthode

public InsertBefore ( string content ) : void
content string
Résultat void

TreeNode() protected méthode

protected TreeNode ( ANode aNode, int kind, Database database ) : System
aNode ANode
kind int
database Database
Résultat System