예제 #1
0
파일: Link.cs 프로젝트: zdanev/HtmlHelper
        public Link(LinkRel rel, LinkType type, string href) : base("link")
        {
            Rel  = rel;
            Type = type;
            Href = href;

            this.Attr("rel", rel.AsPath());
            this.Attr("type", type.AsPath());
            this.Attr("href", href);
        }