This documentation is also published as Markdown for efficient machine reading: the whole site is indexed at /llms.txt, and every page has a clean Markdown copy under /_llms/. These are generated from the same source and cost far fewer tokens to read than this rendered HTML.

Skip to main content Skip to navigation

CrefNode Pennington.ApiMetadata

Cross-reference from a <see cref="..."/> or <see href="..."/> element.

Properties

CrefId string
The raw cref id or href value.
DisplayText string
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

CrefId string
The raw cref id or href value.
DisplayText string
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; }
}