Interface IUmbracoPipelineFilter
Used to modify the Microsoft.
Namespace: Umbraco.Cms.Web.Common.ApplicationBuilder
Assembly: Umbraco.Web.Common.dll
Syntax
public interface IUmbracoPipelineFilter
Remarks
Mainly used for package developers.
Properties
View SourceName
The name of the filter
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
System. |
Remarks
This can be used by developers to see what is registered and if anything should be re-ordered, removed, etc...
Methods
View SourceOnEndpoints(IApplicationBuilder)
Executes after On
Declaration
void OnEndpoints(IApplicationBuilder app)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
app |
OnPostPipeline(IApplicationBuilder)
Executes after core Umbraco middlewares are registered and before any Endpoints are declared
Declaration
void OnPostPipeline(IApplicationBuilder app)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
app |
OnPrePipeline(IApplicationBuilder)
Executes before Umbraco middlewares are registered
Declaration
void OnPrePipeline(IApplicationBuilder app)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
app |