RegistrationExtensionsEnableInterfaceInterceptorsTLimit, TActivatorData, TSingleRegistrationStyle Method |
Enable interface interception on the target type. Interceptors will be determined
via Intercept attributes on the class or interface, or added with InterceptedBy() calls.
Namespace:
Autofac.Extras.DynamicProxy
Assembly:
Autofac.Extras.DynamicProxy (in Autofac.Extras.DynamicProxy.dll) Version: 6.0.0+d14b34a0bec59c4984cd6167bf2f3e37fb6e1002
Syntax public static IRegistrationBuilder<TLimit, TActivatorData, TSingleRegistrationStyle> EnableInterfaceInterceptors<TLimit, TActivatorData, TSingleRegistrationStyle>(
this IRegistrationBuilder<TLimit, TActivatorData, TSingleRegistrationStyle> registration,
ProxyGenerationOptions options = null
)
<ExtensionAttribute>
Public Shared Function EnableInterfaceInterceptors(Of TLimit, TActivatorData, TSingleRegistrationStyle) (
registration As IRegistrationBuilder(Of TLimit, TActivatorData, TSingleRegistrationStyle),
Optional options As ProxyGenerationOptions = Nothing
) As IRegistrationBuilder(Of TLimit, TActivatorData, TSingleRegistrationStyle)
Parameters
- registration
- Type: Autofac.BuilderIRegistrationBuilderTLimit, TActivatorData, TSingleRegistrationStyle
Registration to apply interception to. - options (Optional)
- Type: ProxyGenerationOptions
Proxy generation options to apply.
Type Parameters
- TLimit
- Registration limit type.
- TActivatorData
- Activator data type.
- TSingleRegistrationStyle
- Registration style.
Return Value
Type:
IRegistrationBuilderTLimit,
TActivatorData,
TSingleRegistrationStyleRegistration 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
IRegistrationBuilderTLimit,
TActivatorData,
TSingleRegistrationStyle. 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