public record DocCommentElement(string Name, DocCommentElementAttribute[] Attributes, DocCommentNode[] Nodes) : DocCommentNode
A DocCommentNode
that represents a compound element (e.g. summary, remarks, and other XML elements).
Each element can contain simple text as well as other elements.
public string Name { get; }
The name of the element (e.g. remarks
, summary
, example
).
public DocCommentElementAttribute[] Attributes { get; }
The sequence of element attributes (e.g. name
, cref
).
public DocCommentNode[] Nodes { get; }
The sequence of nodes this element consists of.