System.Xml.Xsl.XsltOld.AttributeSetAction.Merge C# (CSharp) Method

Merge() private method

private Merge ( AttributeSetAction attributeAction ) : void
attributeAction AttributeSetAction
return void
        internal void Merge(AttributeSetAction attributeAction) {
            // add the contents of "attributeAction" to this action
            // place them at the end
            Action  action;
            int     i = 0;

            while((action = attributeAction.GetAction(i)) != null) {
                AddAction(action);
                i++;
            }
        }
    }