Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CheckAttributeSets_RecurceInContainer()

void System.Xml.Xsl.XsltOld.RootAction.CheckAttributeSets_RecurceInContainer ( Hashtable markTable,
ContainerAction container )
inlineprivate

Definition at line 124 of file RootAction.cs.

125 {
126 if (container.containedActions == null)
127 {
128 return;
129 }
130 foreach (Action containedAction in container.containedActions)
131 {
132 if (containedAction is UseAttributeSetsAction)
133 {
134 CheckAttributeSets_RecurceInList(markTable, ((UseAttributeSetsAction)containedAction).UsedSets);
135 }
136 else if (containedAction is ContainerAction)
137 {
139 }
140 }
141 }
void CheckAttributeSets_RecurceInContainer(Hashtable markTable, ContainerAction container)
void CheckAttributeSets_RecurceInList(Hashtable markTable, ICollection setQNames)

References System.Xml.Xsl.XsltOld.RootAction.CheckAttributeSets_RecurceInContainer(), System.Xml.Xsl.XsltOld.RootAction.CheckAttributeSets_RecurceInList(), and System.Xml.Xsl.XsltOld.ContainerAction.containedActions.

Referenced by System.Xml.Xsl.XsltOld.RootAction.CheckAttributeSets_RecurceInContainer(), and System.Xml.Xsl.XsltOld.RootAction.CheckAttributeSets_RecurceInList().