Click or drag to resize

ServiceMiddlewareRegistrationExtensionsRegisterServiceMiddlewareSource Method

Register a source of service middleware.

Namespace:  Autofac
Assembly:  Autofac (in Autofac.dll) Version: 6.0.0+39696a967e8826f7f1ebc8c1ff4523c9dd75abe0
Syntax
public static IServiceMiddlewareSourceRegistrar RegisterServiceMiddlewareSource(
	this ContainerBuilder builder,
	IServiceMiddlewareSource serviceMiddlewareSource
)

Parameters

builder
Type: AutofacContainerBuilder
The container builder.
serviceMiddlewareSource
Type: Autofac.Core.RegistrationIServiceMiddlewareSource
The source to add.

Return Value

Type: IServiceMiddlewareSourceRegistrar
A registrar to assist with fluent addition of sources.

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