This documentation is also published as Markdown for efficient machine reading: the whole site is indexed at /llms.txt, and every page has a clean Markdown copy at the same URL with .md appended. These are generated from the same source and cost far fewer tokens to read than this rendered HTML.

Skip to main content Skip to navigation

MetaNameTag Pennington.Head

A <meta name="..." content="..."> tag (description, twitter:*, generator).

Properties

Content string
The content attribute.
Name string
The name attribute.

Constructors

MetaNameTag

#
public MetaNameTag(string Name, string Content)

A <meta name="..." content="..."> tag (description, twitter:*, generator).

Parameters

Name string
The name attribute.
Content string
The content attribute.

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; }
}