Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 905 Bytes

Summary.DocCommentElement.md

File metadata and controls

31 lines (22 loc) · 905 Bytes
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.

Properties

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.