Click or drag to resize

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

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.
insertionMode
Type: Autofac.Core.Resolving.PipelineMiddlewareInsertionMode
The insertion mode specifying whether to add at the start or end of the phase.
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