RegistrationExtensionsExceptT Method (IRegistrationBuilderObject, ScanningActivatorData, DynamicRegistrationStyle, ActionIRegistrationBuilderT, ConcreteReflectionActivatorData, SingleRegistrationStyle) |
Filters the scanned types to exclude the provided type, providing specific configuration for
the excluded type.
Namespace:
Autofac
Assembly:
Autofac (in Autofac.dll) Version: 6.0.0+39696a967e8826f7f1ebc8c1ff4523c9dd75abe0
Syntax public static IRegistrationBuilder<Object, ScanningActivatorData, DynamicRegistrationStyle> Except<T>(
this IRegistrationBuilder<Object, ScanningActivatorData, DynamicRegistrationStyle> registration,
Action<IRegistrationBuilder<T, ConcreteReflectionActivatorData, SingleRegistrationStyle>> customizedRegistration
)
<ExtensionAttribute>
Public Shared Function Except(Of T) (
registration As IRegistrationBuilder(Of Object, ScanningActivatorData, DynamicRegistrationStyle),
customizedRegistration As Action(Of IRegistrationBuilder(Of T, ConcreteReflectionActivatorData, SingleRegistrationStyle))
) As IRegistrationBuilder(Of Object, ScanningActivatorData, DynamicRegistrationStyle)
Parameters
- registration
- Type: Autofac.BuilderIRegistrationBuilderObject, ScanningActivatorData, DynamicRegistrationStyle
Registration to filter types from. - customizedRegistration
- Type: SystemActionIRegistrationBuilderT, ConcreteReflectionActivatorData, SingleRegistrationStyle
Registration for the excepted type.
Type Parameters
- T
- The concrete type to exclude.
Return Value
Type:
IRegistrationBuilderObject,
ScanningActivatorData,
DynamicRegistrationStyleRegistration builder allowing the registration to be configured.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IRegistrationBuilderObject,
ScanningActivatorData,
DynamicRegistrationStyle. 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