ListNode
Pennington.ApiMetadata
List block from a <list> element.
Properties
ItemsImmutableArray<XmlDocListItem>- Items contained in the list.
Kindstring- 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
Kindstring- List type attribute value (e.g.
bullet,number,table). ItemsImmutableArray<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)
;
}