Click or drag to resize

RegistrationExtensionsInstancePerApiRequestTLimit, TActivatorData, TStyle Method

Note: This API is now obsolete.

Share one instance of the component within the context of a single ApiController request.

Namespace:  Autofac.Integration.WebApi
Assembly:  Autofac.Integration.WebApi (in Autofac.Integration.WebApi.dll) Version: 6.0.0+03bf347ff3a78c2557675254b1a417eef4b464ec
Syntax
[ObsoleteAttribute("Instead of using the Web-API-specific InstancePerApiRequest, please switch to the InstancePerRequest shared registration extension from Autofac core.")]
public static IRegistrationBuilder<TLimit, TActivatorData, TStyle> InstancePerApiRequest<TLimit, TActivatorData, TStyle>(
	this IRegistrationBuilder<TLimit, TActivatorData, TStyle> registration,
	params Object[] lifetimeScopeTags
)

Parameters

registration
Type: Autofac.BuilderIRegistrationBuilderTLimit, TActivatorData, TStyle
The registration to configure.
lifetimeScopeTags
Type: SystemObject
Additional tags applied for matching lifetime scopes.

Type Parameters

TLimit
Registration limit type.
TActivatorData
Activator data type.
TStyle
Registration style.

Return Value

Type: IRegistrationBuilderTLimit, TActivatorData, TStyle
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 IRegistrationBuilderTLimit, TActivatorData, TStyle. 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).
Exceptions
ExceptionCondition
ArgumentNullException Thrown if registration is .
See Also