Click or drag to resize

RegistrationExtensions.AsActionFilterOverrideFor<TController> Method (IRegistrationBuilder<Object, IConcreteActivatorData, SingleRegistrationStyle>, Expression<Action<TController>>, Int32)

Sets the provided registration to act as an IActionFilter override for the specified controller action.

Namespace:  Autofac.Integration.Mvc
Assembly:  Autofac.Integration.Mvc (in Autofac.Integration.Mvc.dll) Version: 6.0.0+106fe194fc419c09f32d39119967f68798cc6895
Syntax
public static IRegistrationBuilder<Object, IConcreteActivatorData, SingleRegistrationStyle> AsActionFilterOverrideFor<TController>(
	this IRegistrationBuilder<Object, IConcreteActivatorData, SingleRegistrationStyle> registration,
	Expression<Action<TController>> actionSelector,
	int order = -1
)
where TController : IController

Parameters

registration
Type: Autofac.Builder.IRegistrationBuilder<Object, IConcreteActivatorData, SingleRegistrationStyle>
The registration.
actionSelector
Type: System.Linq.Expressions.Expression<Action<TController>>
The action selector.
order (Optional)
Type: System.Int32
The order in which the filter is applied.

Type Parameters

TController
The type of the controller.

Return Value

Type: IRegistrationBuilder<Object, IConcreteActivatorData, SingleRegistrationStyle>
A registration builder allowing further configuration of the component.

Usage Note

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