Click or drag to resize

RegistrationExtensionsEnableClassInterceptorsTLimit, TRegistrationStyle Method (IRegistrationBuilderTLimit, ScanningActivatorData, TRegistrationStyle, ProxyGenerationOptions, Type)

Enable class interception on the target type. Interceptors will be determined via Intercept attributes on the class or added with InterceptedBy(). Only virtual methods can be intercepted this way.

Namespace:  Autofac.Extras.DynamicProxy
Assembly:  Autofac.Extras.DynamicProxy (in Autofac.Extras.DynamicProxy.dll) Version: 6.0.0+d14b34a0bec59c4984cd6167bf2f3e37fb6e1002
Syntax
public static IRegistrationBuilder<TLimit, ScanningActivatorData, TRegistrationStyle> EnableClassInterceptors<TLimit, TRegistrationStyle>(
	this IRegistrationBuilder<TLimit, ScanningActivatorData, TRegistrationStyle> registration,
	ProxyGenerationOptions options,
	params Type[] additionalInterfaces
)

Parameters

registration
Type: Autofac.BuilderIRegistrationBuilderTLimit, ScanningActivatorData, TRegistrationStyle
Registration to apply interception to.
options
Type: ProxyGenerationOptions
Proxy generation options to apply.
additionalInterfaces
Type: SystemType
Additional interface types. Calls to their members will be proxied as well.

Type Parameters

TLimit
Registration limit type.
TRegistrationStyle
Registration style.

Return Value

Type: IRegistrationBuilderTLimit, ScanningActivatorData, TRegistrationStyle
Registration 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, ScanningActivatorData, TRegistrationStyle. 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