Beispiel #1
0
 public TagNode With(string name, TagDefaultProperty defaultProperty)
 {
     _attributes.Add(name, new TagAttributeNode(name, defaultProperty));
     return(this);
 }
 public TagAttributeNode(string name, TagDefaultProperty defaultProperty)
 {
     Name    = name;
     Default = "${" + defaultProperty?.PropertyName + "}";
 }