RegistrationExtensionsOverrideWebApiAuthorizationFilterForTController Method (ContainerBuilder, ExpressionActionTController) |
Sets the provided registration to act as an IOverrideFilter for the specified controller action.
Namespace:
Autofac.Integration.WebApi
Assembly:
Autofac.Integration.WebApi (in Autofac.Integration.WebApi.dll) Version: 6.0.0+03bf347ff3a78c2557675254b1a417eef4b464ec
Syntax public static void OverrideWebApiAuthorizationFilterFor<TController>(
this ContainerBuilder builder,
Expression<Action<TController>> actionSelector
)
where TController : IHttpController
<ExtensionAttribute>
Public Shared Sub OverrideWebApiAuthorizationFilterFor(Of TController As IHttpController) (
builder As ContainerBuilder,
actionSelector As Expression(Of Action(Of TController))
)
Parameters
- builder
- Type: AutofacContainerBuilder
The container builder. - actionSelector
- Type: System.Linq.ExpressionsExpressionActionTController
The action selector.
Type Parameters
- TController
[Missing <typeparam name="TController"/> documentation for "M:Autofac.Integration.WebApi.RegistrationExtensions.OverrideWebApiAuthorizationFilterFor``1(Autofac.ContainerBuilder,System.Linq.Expressions.Expression{System.Action{``0}})"]
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