ListNode Pennington.ApiMetadata
List block from a <list> element.
Properties
ItemsSystem.Collections.Immutable.ImmutableArray<Pennington.ApiMetadata.XmlDocListItem>- Items contained in the list.
Kindstring- 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
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
{
/// 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
;
}