BindAndApply() public method

public BindAndApply ( ) : bool
return bool
Esempio n. 1
0
        private bool ApplyAttributesAndExpandMacros()
        {
            bool attributesApplied = _attributes.BindAndApply();
            bool macrosExpanded    = _macroExpander.ExpandAll();

            return(attributesApplied || macrosExpanded);
        }