PipelineBuilderExtensionsUse Method (IResolvePipelineBuilder, String, PipelinePhase, ActionResolveRequestContext, ActionResolveRequestContext) |
Use a middleware callback in a resolve pipeline.
Namespace:
Autofac
Assembly:
Autofac (in Autofac.dll) Version: 6.0.0+39696a967e8826f7f1ebc8c1ff4523c9dd75abe0
Syntax public static IResolvePipelineBuilder Use(
this IResolvePipelineBuilder builder,
string descriptor,
PipelinePhase phase,
Action<ResolveRequestContext, Action<ResolveRequestContext>> callback
)
<ExtensionAttribute>
Public Shared Function Use (
builder As IResolvePipelineBuilder,
descriptor As String,
phase As PipelinePhase,
callback As Action(Of ResolveRequestContext, Action(Of ResolveRequestContext))
) As IResolvePipelineBuilder
Parameters
- builder
- Type: Autofac.Core.Resolving.PipelineIResolvePipelineBuilder
The container builder. - descriptor
- Type: SystemString
A description for the middleware; this will show up in any resolve tracing. - phase
- Type: Autofac.Core.Resolving.PipelinePipelinePhase
The phase of the pipeline the middleware should run at. - callback
- Type: SystemActionResolveRequestContext, ActionResolveRequestContext
A callback invoked to run your middleware.
This callback takes a ResolveRequestContext, containing the context for the resolve request, plus
a callback to invoke to continue the pipeline.
Return Value
Type:
IResolvePipelineBuilderThe same builder instance.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IResolvePipelineBuilder. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also