C# Class ConfigurationNode, DataCommander

Datei anzeigen Open project: csbernath/DataCommander Class Usage Examples

Public Methods

Method Description
AddChildNode ( ConfigurationNode, childNode ) : void
Clone ( ) : ConfigurationNode,
ConfigurationNode ( string name ) : System,
CreateNode ( string nodeName ) : ConfigurationNode,
InsertChildNode ( int index, ConfigurationNode, childNode ) : void
RemoveChildNode ( ConfigurationNode, childNode ) : void
SelectNode ( string path ) : ConfigurationNode,

Finds recursively a node under the node.

Method Details

AddChildNode() public method

public AddChildNode ( ConfigurationNode, childNode ) : void
childNode ConfigurationNode,
return void

Clone() public method

public Clone ( ) : ConfigurationNode,
return ConfigurationNode,

ConfigurationNode() public method

public ConfigurationNode ( string name ) : System,
name string
return System,

CreateNode() public method

public CreateNode ( string nodeName ) : ConfigurationNode,
nodeName string
return ConfigurationNode,

InsertChildNode() public method

public InsertChildNode ( int index, ConfigurationNode, childNode ) : void
index int
childNode ConfigurationNode,
return void

RemoveChildNode() public method

public RemoveChildNode ( ConfigurationNode, childNode ) : void
childNode ConfigurationNode,
return void

SelectNode() public method

Finds recursively a node under the node.
public SelectNode ( string path ) : ConfigurationNode,
path string Name of the child node. /// The name can contains path delimiters.
return ConfigurationNode,