C# Class SWFProcessing.Swiffotron.Processor.DependencyList

Maps nodes in the XML to their dependency nodes for the purposes of working out what to do first.
Afficher le fichier Open project: WeeWorld/Swiffotron Class Usage Examples

Méthodes publiques

Méthode Description
AddDependency ( XPathNavigator dep ) : void

Add a new dependency for this node.

DependencyList ( XPathNavigator n, List d ) : System.Collections.Generic

Initializes a new instance of the DependencyList class.

RemoveDependency ( XPathNavigator dep ) : void

Remove a dependency from this node.

Method Details

AddDependency() public méthode

Add a new dependency for this node.
public AddDependency ( XPathNavigator dep ) : void
dep System.Xml.XPath.XPathNavigator The dependency node.
Résultat void

DependencyList() public méthode

Initializes a new instance of the DependencyList class.
public DependencyList ( XPathNavigator n, List d ) : System.Collections.Generic
n System.Xml.XPath.XPathNavigator A navigator node
d List The current list of dependencies
Résultat System.Collections.Generic

RemoveDependency() public méthode

Remove a dependency from this node.
public RemoveDependency ( XPathNavigator dep ) : void
dep System.Xml.XPath.XPathNavigator The dependency to remove.
Résultat void