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

RedirectSource Pennington.Pipeline

A route that redirects to another URL.

Properties

TargetUrl UrlPath
Destination URL for the redirect.

Constructors

RedirectSource

#
public RedirectSource(UrlPath TargetUrl)

A route that redirects to another URL.

Parameters

TargetUrl UrlPath
Destination URL for the redirect.

Pennington.Pipeline.RedirectSource

namespace Pennington.Pipeline;

/// A route that redirects to another URL.
public record RedirectSource
{
    /// A route that redirects to another URL.
    
public RedirectSource(UrlPath TargetUrl)
; /// Destination URL for the redirect.
public UrlPath TargetUrl { get; set; }
}