HeadEntry Pennington.Head
A composed head tag paired with its dedup key (null for repeatable tags).
Properties
KeyHeadTagKey?- Dedup key, or
nullwhen the tag is repeatable. TagHeadTag- The tag to emit.
Constructors
HeadEntry
#public HeadEntry(HeadTagKey? Key, HeadTag Tag)
A composed head tag paired with its dedup key (null for repeatable tags).
Parameters
KeyHeadTagKey?- Dedup key, or
nullwhen the tag is repeatable. TagHeadTag- The tag to emit.
Pennington.Head.HeadEntry
namespace Pennington.Head;
/// A composed head tag paired with its dedup key (null for repeatable tags).
public struct HeadEntry
{
/// A composed head tag paired with its dedup key (null for repeatable tags).
public HeadEntry(HeadTagKey? Key, HeadTag Tag)
;
/// Dedup key, or null when the tag is repeatable.
public HeadTagKey? Key { get; set; }
/// The tag to emit.
public HeadTag Tag { get; set; }
}