Click or drag to resize

RegistrationExtensionsRegisterComposablePartDefinition Method

Register a MEF part definition.

Namespace:  Autofac.Integration.Mef
Assembly:  Autofac.Integration.Mef (in Autofac.Integration.Mef.dll) Version: 6.0.0+4280ac7e7f34f8dcbf61bbdf820a070216e453fc
Syntax
public static void RegisterComposablePartDefinition(
	this ContainerBuilder builder,
	ComposablePartDefinition partDefinition,
	Func<ExportDefinition, IEnumerable<Service>> exposedServicesMapper
)

Parameters

builder
Type: AutofacContainerBuilder
The container builder.
partDefinition
Type: System.ComponentModel.Composition.PrimitivesComposablePartDefinition
The part definition to register.
exposedServicesMapper
Type: SystemFuncExportDefinition, IEnumerableService
A mapping function to transform ExportDefinitions into Services.

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