C# Class Nxdb.Node.ProcessingInstruction

Representation of an XML processing instruction node.
Inheritance: TreeNode
Exibir arquivo Open project: daveaglick/Nxdb Class Usage Examples

Public Methods

Method Description
ProcessingInstruction ( string name, string value ) : System.Xml

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

Protected Methods

Method Description
CreateXmlNode ( ) : XmlNode

Private Methods

Method Description
ProcessingInstruction ( ANode aNode, Database database ) : System.Xml

Method Details

CreateXmlNode() protected method

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

ProcessingInstruction() public method

Initializes a new instance of the ProcessingInstruction class. Manually constructed nodes are immutable and are not added to the database.
public ProcessingInstruction ( string name, string value ) : System.Xml
name string The name of the processing instruction.
value string The value of the processing instruction.
return System.Xml