C# Класс Nxdb.Node.ContainerNode

Base class for nodes that can contain other nodes (document and element).
Наследование: TreeNode
Показать файл Открыть проект

Открытые методы

Метод Описание
Append ( ) : void

Appends the specified nodes to this node.

Append ( IEnumerable nodes ) : void

Appends the specified nodes to this node.

Append ( XmlReader xmlReader ) : void

Appends the specified content to this node.

Append ( string content ) : void

Appends the specified XML content to this node.

Prepend ( ) : void

Prepends the specified nodes to this node.

Prepend ( IEnumerable nodes ) : void

Prepends the specified nodes to this node.

Prepend ( XmlReader xmlReader ) : void

Prepends the specified content to this node.

Prepend ( string content ) : void

Prepends the specified XML content to this node.

ReadInnerText ( TextReader textReader ) : void

Reads and sets the inner text content of this node.

ReadInnerXml ( XmlReader xmlReader ) : void

Reads and sets the inner XML content of this node.

RemoveAll ( ) : void

Removes all child nodes (including attribute nodes).

WriteInnerText ( TextWriter textWriter ) : void

Writes the inner text content of this node.

WriteInnerXml ( XmlWriter xmlWriter ) : void

Writes the inner XML content of this node.

WriteOuterXml ( XmlWriter xmlWriter ) : void

Writes the outer XML content of this node.

Защищенные методы

Метод Описание
ContainerNode ( ANode aNode, int kind, Database database ) : System

Приватные методы

Метод Описание
Append ( NodeCache nodeCache ) : void
Prepend ( NodeCache nodeCache ) : void
ReplaceChildren ( NodeCache nodeCache ) : void

Описание методов

Append() публичный Метод

Appends the specified nodes to this node.
public Append ( ) : void
Результат void

Append() публичный Метод

Appends the specified nodes to this node.
public Append ( IEnumerable nodes ) : void
nodes IEnumerable The nodes to append.
Результат void

Append() публичный Метод

Appends the specified content to this node.
public Append ( XmlReader xmlReader ) : void
xmlReader XmlReader The XML reader to get content from.
Результат void

Append() публичный Метод

Appends the specified XML content to this node.
public Append ( string content ) : void
content string The content to append.
Результат void

ContainerNode() защищенный Метод

protected ContainerNode ( ANode aNode, int kind, Database database ) : System
aNode ANode
kind int
database Database
Результат System

Prepend() публичный Метод

Prepends the specified nodes to this node.
public Prepend ( ) : void
Результат void

Prepend() публичный Метод

Prepends the specified nodes to this node.
public Prepend ( IEnumerable nodes ) : void
nodes IEnumerable The nodes to prepend.
Результат void

Prepend() публичный Метод

Prepends the specified content to this node.
public Prepend ( XmlReader xmlReader ) : void
xmlReader XmlReader The XML reader to get content from.
Результат void

Prepend() публичный Метод

Prepends the specified XML content to this node.
public Prepend ( string content ) : void
content string The content to prepend.
Результат void

ReadInnerText() публичный Метод

Reads and sets the inner text content of this node.
public ReadInnerText ( TextReader textReader ) : void
textReader TextReader The text reader to read from.
Результат void

ReadInnerXml() публичный Метод

Reads and sets the inner XML content of this node.
public ReadInnerXml ( XmlReader xmlReader ) : void
xmlReader XmlReader The XML reader to read from.
Результат void

RemoveAll() публичный Метод

Removes all child nodes (including attribute nodes).
public RemoveAll ( ) : void
Результат void

WriteInnerText() публичный Метод

Writes the inner text content of this node.
public WriteInnerText ( TextWriter textWriter ) : void
textWriter System.IO.TextWriter The text writer to write to.
Результат void

WriteInnerXml() публичный Метод

Writes the inner XML content of this node.
public WriteInnerXml ( XmlWriter xmlWriter ) : void
xmlWriter System.Xml.XmlWriter The XML writer to write to.
Результат void

WriteOuterXml() публичный Метод

Writes the outer XML content of this node.
public WriteOuterXml ( XmlWriter xmlWriter ) : void
xmlWriter System.Xml.XmlWriter The XML writer to write to.
Результат void