Click or drag to resize

ServiceMiddlewareRegistrationExtensionsRegisterServiceMiddlewareTService Method (ContainerBuilder, String, PipelinePhase, MiddlewareInsertionMode, ActionResolveRequestContext, ActionResolveRequestContext)

Register a resolve middleware for services providing a particular type.

Namespace:  Autofac
Assembly:  Autofac (in Autofac.dll) Version: 6.0.0+39696a967e8826f7f1ebc8c1ff4523c9dd75abe0
Syntax
public static void RegisterServiceMiddleware<TService>(
	this ContainerBuilder builder,
	string descriptor,
	PipelinePhase phase,
	MiddlewareInsertionMode insertionMode,
	Action<ResolveRequestContext, Action<ResolveRequestContext>> callback
)

Parameters

builder
Type: AutofacContainerBuilder
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 of the middleware (start or end of 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.

Type Parameters

TService
The service type.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ContainerBuilder. 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