Click or drag to resize
DependencyLifeCycle Enumeration

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "T:Netadmin.Core.DependencyLifeCycle"]

Namespace: Netadmin.Core
Assembly: Netadmin.Core (in Netadmin.Core.dll) Version: release/9.0@131b654fe7332b0776120c2b44d96c6cac5ac9a2
Syntax
public enum DependencyLifeCycle
Members
  Member nameValueDescription
PerRequest1 Each request for an instance will create a new object
Singleton2 First request for an instance will create a new object, this instance is then reused for the duration of the container
PerHttpContext3 Do not use. An instance will be created and reused for the lifetime of a HTTP Request. Requires additional container management.
PerHttpSession4 Do not use. An instance will be created and reused for the lifetime of a HTTP Session. Requires additional container management.
PerThread5 Do not use. An instance will be created and reused for each thread. Requires additional container management.
See Also