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

XmlDocListItem Pennington.ApiMetadata

Single item within a ListNode.

Properties

Description ImmutableArray<XmlDocNode>
Nodes from the <description> element (or the item body when no description element is present).
Term ImmutableArray<XmlDocNode>
Nodes from the <term> element.

Constructors

XmlDocListItem

#
public XmlDocListItem(ImmutableArray<XmlDocNode> Term, ImmutableArray<XmlDocNode> Description)

Single item within a ListNode.

Parameters

Term ImmutableArray<XmlDocNode>
Nodes from the <term> element.
Description ImmutableArray<XmlDocNode>
Nodes from the <description> element (or the item body when no description element is present).

Pennington.ApiMetadata.XmlDocListItem

namespace Pennington.ApiMetadata;

/// Single item within a ListNode.
public record XmlDocListItem
{
    /// Nodes from the <description> element (or the item body when no description element is present).
    
public ImmutableArray<XmlDocNode> Description { get; set; }
/// Nodes from the <term> element.
public ImmutableArray<XmlDocNode> Term { get; set; }
/// Single item within a ListNode.
public XmlDocListItem(ImmutableArray<XmlDocNode> Term, ImmutableArray<XmlDocNode> Description)
; }