C# Class Nxdb.Node.Document

Representation of an XML document node.
Inheritance: ContainerNode
ファイルを表示 Open project: daveaglick/Nxdb Class Usage Examples

Public Methods

Method Description
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.

Protected Methods

Method Description
CreateXmlNode ( ) : XmlNode

Private Methods

Method Description
Document ( ANode aNode, Database database ) : System

Method Details

CreateXmlNode() protected method

protected CreateXmlNode ( ) : XmlNode
return System.Xml.XmlNode

Document() public method

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.
return System

InsertAfter() public method

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.
return void

InsertBefore() public method

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.
return void