CrefNode
Pennington.ApiMetadata
Cross-reference from a <see cref="..."/> or <see href="..."/> element.
Properties
CrefIdstring- The raw cref id or href value.
DisplayTextstring- Optional display text from the element body.
Constructors
CrefNode
#public CrefNode(string CrefId, string DisplayText)
Cross-reference from a <see cref="..."/> or <see href="..."/> element.
Parameters
CrefIdstring- The raw cref id or href value.
DisplayTextstring- Optional display text from the element body.
Pennington.ApiMetadata.CrefNode
namespace Pennington.ApiMetadata;
/// Cross-reference from a <see cref="..."/> or <see href="..."/> element.
public record CrefNode
{
/// The raw cref id or href value.
public string CrefId { get; set; }
/// Cross-reference from a <see cref="..."/> or <see href="..."/> element.
public CrefNode(string CrefId, string DisplayText)
;
/// Optional display text from the element body.
public string DisplayText { get; set; }
}