Exemplo n.º 1
0
        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);
        }