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

Skip to main content Skip to navigation

XmlDocListItem Pennington.ApiMetadata

Single item within a ListNode.

Properties

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

Constructors

.ctor

#
public record 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
{
    /// Single item within a ListNode.
    
public record XmlDocListItem(ImmutableArray<XmlDocNode> Term, ImmutableArray<XmlDocNode> Description);
/// Nodes from the <description> element (or the item body when no description element is present).
ImmutableArray<XmlDocNode> Description
; /// Nodes from the <term> element.
ImmutableArray<XmlDocNode> Term
; }