C# Class Nxdb.Node.Document

Representation of an XML document node.
Inheritance: ContainerNode
Afficher le fichier Open project: daveaglick/Nxdb Class Usage Examples

Méthodes publiques

Méthode 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.

Méthodes protégées

Méthode Description
CreateXmlNode ( ) : XmlNode

Private Methods

Méthode Description
Document ( ANode aNode, Database database ) : System

Method Details

CreateXmlNode() protected méthode

protected CreateXmlNode ( ) : XmlNode
Résultat System.Xml.XmlNode

Document() public méthode

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.
Résultat System

InsertAfter() public méthode

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.
Résultat void

InsertBefore() public méthode

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.
Résultat void