WebApiRequestLifestyle Class

Simple Injector

Note: This API is now obsolete.

Defines a lifestyle that caches instances during the execution of a single ASP.NET Web API Request. Unless explicitly stated otherwise, instances created by this lifestyle will be disposed at the end of the Web API request. Do note that this lifestyle requires the SimpleInjectorWebApiDependencyResolver to be registered in the Web API configuration.
Inheritance Hierarchy

SystemObject
  SimpleInjectorLifestyle
    SimpleInjectorScopedLifestyle
      SimpleInjector.LifestylesAsyncScopedLifestyle
        SimpleInjector.Integration.WebApiWebApiRequestLifestyle

Namespace:  SimpleInjector.Integration.WebApi
Assembly:  SimpleInjector.Integration.WebApi (in SimpleInjector.Integration.WebApi.dll) Version: 4.10.2
Syntax

[ObsoleteAttribute("Please use SimpleInjector.Lifestyles.AsyncScopedLifestyle instead. Will be removed in version 5.0.", 
	true)]
public sealed class WebApiRequestLifestyle : AsyncScopedLifestyle

The WebApiRequestLifestyle type exposes the following members.

Constructors

  NameDescription
Public methodWebApiRequestLifestyle
Initializes a new instance of the WebApiRequestLifestyle class. The created and cached instance will be disposed when the Web API request ends, and when the created object implements IDisposable.
Public methodWebApiRequestLifestyle(Boolean) Obsolete.
Initializes a new instance of the WebApiRequestLifestyle class.
Top
Properties

  NameDescription
Public propertyLength
Gets the length of the lifestyle.
(Inherited from ScopedLifestyle.)
Public propertyName
Gets the user friendly name of this lifestyle.
(Inherited from Lifestyle.)
Top
Methods

  NameDescription
Protected methodCreateCurrentScopeProvider
Creates a delegate that upon invocation return the current Scope for this lifestyle and the given container, or null when the delegate is executed outside the context of such scope.
(Inherited from AsyncScopedLifestyle.)
Public methodCreateProducer(Type, Type, Container)
Creates a new InstanceProducer instance for the given serviceType that will create new instances of specified implementationType with the caching as specified by this lifestyle.
(Inherited from Lifestyle.)
Public methodCreateProducerTService(FuncTService, Container)
Creates a new InstanceProducer instance for the given TService that will create new instances instance using the supplied instanceCreator with the caching as specified by this lifestyle.
(Inherited from Lifestyle.)
Public methodCreateProducerTService(Type, Container)
Creates a new InstanceProducer instance for the given TService that will create new instances of specified implementationType caching as specified by this lifestyle.
(Inherited from Lifestyle.)
Public methodCreateProducerTService, TImplementation(Container)
Creates a new InstanceProducer instance for the given TService that will create new instances of specified TImplementation with the caching as specified by this lifestyle.
(Inherited from Lifestyle.)
Public methodCreateRegistration(Type, Container)
Creates a new Registration instance defining the creation of the specified concreteType with the caching as specified by this lifestyle, or returns an already created Registration instance for this container + lifestyle + type combination. This method might fail when run in a partial trust sandbox when concreteType is an internal type.
(Inherited from Lifestyle.)
Public methodCreateRegistration(Type, FuncObject, Container)
Creates a new Registration instance defining the creation of the specified serviceType using the supplied instanceCreator with the caching as specified by this lifestyle.
(Inherited from Lifestyle.)
Public methodCreateRegistration(Type, Type, Container) Obsolete.
This overload has been deprecated. Please call CreateRegistration(Type, Container) instead.
(Inherited from Lifestyle.)
Public methodCreateRegistrationTConcrete(Container)
Creates a new Registration instance defining the creation of the specified TConcrete with the caching as specified by this lifestyle, or returns an already created Registration instance for this container + lifestyle + type combination.
(Inherited from Lifestyle.)
Public methodCreateRegistrationTService(FuncTService, Container)
Creates a new Registration instance defining the creation of the specified TService using the supplied instanceCreator with the caching as specified by this lifestyle.
(Inherited from Lifestyle.)
Protected methodCreateRegistrationCoreTConcrete(Container)
Creates a new Registration instance defining the creation of the specified TConcrete with the caching as specified by this lifestyle.
(Inherited from ScopedLifestyle.)
Protected methodCreateRegistrationCoreTService(FuncTService, Container)
When overridden in a derived class, creates a new Registration instance defining the creation of the specified TService using the supplied instanceCreator with the caching as specified by this lifestyle.
(Inherited from Lifestyle.)
Protected methodCreateRegistrationCoreTService(FuncTService, Container)
Creates a new Registration instance defining the creation of the specified TService using the supplied instanceCreator with the caching as specified by this lifestyle.
(Inherited from ScopedLifestyle.)
Public methodGetCurrentScope
Returns the current Scope for this lifestyle and the given container, or null when this method is executed outside the context of a scope.
(Inherited from ScopedLifestyle.)
Protected methodGetCurrentScopeCore
Returns the current Scope for this lifestyle and the given container, or null when this method is executed outside the context of a scope.
(Inherited from AsyncScopedLifestyle.)
Public methodRegisterForDisposal
Adds the disposable to the list of items that will get disposed when the scope ends.
(Inherited from ScopedLifestyle.)
Public methodWhenScopeEnds
Allows registering an action delegate that will be called when the scope ends, but before the scope disposes any instances.
(Inherited from ScopedLifestyle.)
Top
Examples

The following example shows the usage of the WebApiRequestLifestyle class:
C#
var container = new Container();
container.Options.DefaultScopedLifestyle = new WebApiRequestLifestyle();
container.Register<IUnitOfWork, EntityFrameworkUnitOfWork>(Lifestyle.Scoped);
See Also

Reference