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 under /_llms/. 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

MetaPropertyTag Pennington.Head

A <meta property="..." content="..."> tag (OpenGraph og:*).

Properties

Content string
The content attribute.
Property string
The property attribute.

Constructors

MetaPropertyTag

#
public MetaPropertyTag(string Property, string Content)

A <meta property="..." content="..."> tag (OpenGraph og:*).

Parameters

Property string
The property attribute.
Content string
The content attribute.

Pennington.Head.MetaPropertyTag

namespace Pennington.Head;

/// A <meta property="..." content="..."> tag (OpenGraph og:*).
public record MetaPropertyTag
{
    /// The content attribute.
    
public string Content { get; set; }
/// A <meta property="..." content="..."> tag (OpenGraph og:*).
public MetaPropertyTag(string Property, string Content)
; /// The property attribute.
public string Property { get; set; }
}