IStartupFilter.Configure(Action<IApplicationBuilder>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Extends the provided next
and returns an Action of the same type.
public:
Action<Microsoft::AspNetCore::Builder::IApplicationBuilder ^> ^ Configure(Action<Microsoft::AspNetCore::Builder::IApplicationBuilder ^> ^ next);
public Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> Configure (Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> next);
abstract member Configure : Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> -> Action<Microsoft.AspNetCore.Builder.IApplicationBuilder>
Public Function Configure (next As Action(Of IApplicationBuilder)) As Action(Of IApplicationBuilder)
Parameters
- next
- Action<IApplicationBuilder>
The Configure method to extend.
Returns
A modified Action.