System.Xml.Xsl.XsltOld.RootAction.PorcessAttributeSets C# (CSharp) 메소드

PorcessAttributeSets() 공개 메소드

public PorcessAttributeSets ( Stylesheet rootStylesheet ) : void
rootStylesheet Stylesheet
리턴 void
        public void PorcessAttributeSets(Stylesheet rootStylesheet) {
            MirgeAttributeSets(rootStylesheet);

            // As we mentioned we need to invert all lists.
            foreach (AttributeSetAction attSet in this.attributeSetTable.Values) {
                if (attSet.containedActions != null) {
                    attSet.containedActions.Reverse();
                }
            }

            //  ensures there are no cycles in the attribute-sets use dfs marking method
            CheckAttributeSets_RecurceInList(new Hashtable(), this.attributeSetTable.Keys);
        }