MetaNameTag Pennington.Head
A <meta name="..." content="..."> tag (description, twitter:*, generator).
Properties
Contentstring- The
contentattribute. Namestring- The
nameattribute.
Constructors
MetaNameTag
#public MetaNameTag(string Name, string Content)
A <meta name="..." content="..."> tag (description, twitter:*, generator).
Parameters
Namestring- The
nameattribute. Contentstring- The
contentattribute.
Pennington.Head.MetaNameTag
namespace Pennington.Head;
/// A <meta name="..." content="..."> tag (description, twitter:*, generator).
public record MetaNameTag
{
/// The content attribute.
public string Content { get; set; }
/// A <meta name="..." content="..."> tag (description, twitter:*, generator).
public MetaNameTag(string Name, string Content)
;
/// The name attribute.
public string Name { get; set; }
}