RedirectSource Pennington.Pipeline
A route that redirects to another URL.
Properties
TargetUrlUrlPath- Destination URL for the redirect.
Constructors
RedirectSource
#public RedirectSource(UrlPath TargetUrl)
A route that redirects to another URL.
Parameters
TargetUrlUrlPath- 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; }
}