Click or drag to resize

PipelineBuilderExtensionsUse Method (IResolvePipelineBuilder, 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,
	PipelinePhase phase,
	Action<ResolveRequestContext, Action<ResolveRequestContext>> callback
)

Parameters

builder
Type: Autofac.Core.Resolving.PipelineIResolvePipelineBuilder
The container builder.
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: IResolvePipelineBuilder
The 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