CrossReference Pennington.Pipeline
A resolvable cross-reference target identified by a unique id.
Properties
RoutePennington.Routing.ContentRoute- Route the reference resolves to.
Titlestring- Display title for the target.
Uidstring- Unique identifier used in
xref:links.
Constructors
.ctor
#public record CrossReference(string Uid, string Title, ContentRoute Route);A resolvable cross-reference target identified by a unique id.
Parameters
Uidstring- Unique identifier used in
xref:links. Titlestring- Display title for the target.
RouteContentRoute- Route the reference resolves to.
Pennington.Pipeline.CrossReference
namespace Pennington.Pipeline;
/// A resolvable cross-reference target identified by a unique id.
public record CrossReference
{
/// A resolvable cross-reference target identified by a unique id.
public record CrossReference(string Uid, string Title, ContentRoute Route);
/// Route the reference resolves to.
ContentRoute Route
;
/// Display title for the target.
string Title
;
/// Unique identifier used in xref: links.
string Uid
;
}