C# 클래스 SWFProcessing.Swiffotron.Processor.DependencyList

Maps nodes in the XML to their dependency nodes for the purposes of working out what to do first.
파일 보기 프로젝트 열기: WeeWorld/Swiffotron 1 사용 예제들

공개 메소드들

메소드 설명
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.

메소드 상세

AddDependency() 공개 메소드

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

DependencyList() 공개 메소드

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
리턴 System.Collections.Generic

RemoveDependency() 공개 메소드

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