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
Syntaxpublic static IRegistrationBuilder<Object, IConcreteActivatorData, SingleRegistrationStyle> AsActionFilterOverrideFor<TController>(
this IRegistrationBuilder<Object, IConcreteActivatorData, SingleRegistrationStyle> registration,
Expression<Action<TController>> actionSelector,
int order = -1
)
where TController : IController
<ExtensionAttribute>
Public Shared Function AsActionFilterOverrideFor(Of TController As IController) (
registration As IRegistrationBuilder(Of Object, IConcreteActivatorData, SingleRegistrationStyle),
actionSelector As Expression(Of Action(Of TController)),
Optional order As Integer = -1
) As IRegistrationBuilder(Of Object, IConcreteActivatorData, SingleRegistrationStyle)
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