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

ListNode Pennington.ApiMetadata

List block from a <list> element.

Properties

Items ImmutableArray<XmlDocListItem>
Items contained in the list.
Kind string
List type attribute value (e.g. bullet, number, table).

Constructors

ListNode

#
public ListNode(string Kind, ImmutableArray<XmlDocListItem> Items)

List block from a <list> element.

Parameters

Kind string
List type attribute value (e.g. bullet, number, table).
Items ImmutableArray<XmlDocListItem>
Items contained in the list.

Pennington.ApiMetadata.ListNode

namespace Pennington.ApiMetadata;

/// List block from a <list> element.
public record ListNode
{
    /// Items contained in the list.
    
public ImmutableArray<XmlDocListItem> Items { get; set; }
/// List type attribute value (e.g. bullet, number, table).
public string Kind { get; set; }
/// List block from a <list> element.
public ListNode(string Kind, ImmutableArray<XmlDocListItem> Items)
; }