Inheritance: IHtmlAttributeDeclaredElement, IAngularJsDeclaredElement
Ejemplo n.º 1
0
        private IHtmlAttributeDeclaredElement CreateAndCacheAttributeLocked(string lookupKey, string attributeName,
                                                                            IHtmlTagDeclaredElement tag)
        {
            var psiServices = solution.GetComponent <IPsiServices>();
            var attribute   = new AngularJsHtmlAttributeDeclaredElement(psiServices, attributeName, cdataAttributeValueType, tag);

            attributes.Add(lookupKey, attribute);
            return(attribute);
        }
 private IHtmlAttributeDeclaredElement CreateAndCacheAttributeLocked(string lookupKey, string attributeName,
     IHtmlTagDeclaredElement tag)
 {
     var psiServices = solution.GetComponent<IPsiServices>();
     var attribute = new AngularJsHtmlAttributeDeclaredElement(psiServices, attributeName, cdataAttributeValueType, tag);
     attributes.Add(lookupKey, attribute);
     return attribute;
 }