public TagModelAttributeStack With(AttributeSet attributes)
 {
     Stack.Push(attributes);
     _pop = true;
     return(this);
 }
Esempio n. 2
0
 public TemplateTile(string name, ITemplate template, IEnumerable <TileAttribute> attributes)
 {
     _name       = name;
     _template   = template;
     _attributes = new AttributeSet(name, attributes);
 }
Esempio n. 3
0
 public string Render(TagModel model, AttributeSet attributes)
 {
     GuardInit();
     return(_tile.Render(model, attributes));
 }
Esempio n. 4
0
 public void Merge(AttributeSet attributes)
 {
     AddAttributes(attributes, false);
 }
Esempio n. 5
0
 public string Render(TagModel model, AttributeSet attributes)
 {
     return(_value);
 }
Esempio n. 6
0
 public string Render(TagModel model, AttributeSet attributes)
 {
     return(_extends.Render(model, attributes));
 }