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