This site provides a machine-readable index at /llms.txt.

Skip to main content Skip to navigation

ListNode Pennington.ApiMetadata

List block from a <list> element.

Properties

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

Constructors

.ctor

#
public record 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
{
    /// List block from a <list> element.
    
public record ListNode(string Kind, ImmutableArray<XmlDocListItem> Items);
/// Items contained in the list.
ImmutableArray<XmlDocListItem> Items
; /// List type attribute value (e.g. bullet, number, table).
string Kind
; }