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

Representation of an XML document node.
Наследование: ContainerNode
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
Document ( string name ) : System

Initializes a new instance of the Document class. Manually constructed nodes are immutable and are not added to the database.

InsertAfter ( System xmlReader ) : void

Document does not support inserting content after it. This method will always throw a NotSupportedException.

InsertBefore ( System xmlReader ) : void

Document does not support inserting content before it. This method will always throw a NotSupportedException.

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

Метод Описание
CreateXmlNode ( ) : XmlNode

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

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

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

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

protected CreateXmlNode ( ) : XmlNode
Результат System.Xml.XmlNode

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

Initializes a new instance of the Document class. Manually constructed nodes are immutable and are not added to the database.
public Document ( string name ) : System
name string The name of the document.
Результат System

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

Document does not support inserting content after it. This method will always throw a NotSupportedException.
public InsertAfter ( System xmlReader ) : void
xmlReader System The XML reader to get content from.
Результат void

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

Document does not support inserting content before it. This method will always throw a NotSupportedException.
public InsertBefore ( System xmlReader ) : void
xmlReader System The XML reader to get content from.
Результат void