DependencyLifeCycle Enumeration |
[This is preliminary documentation and is subject to change.]
[Missing <summary> documentation for "T:Netadmin.Core.DependencyLifeCycle"]
Namespace: Netadmin.Core
Member name | Value | Description | |
---|---|---|---|
PerRequest | 1 | Each request for an instance will create a new object | |
Singleton | 2 | First request for an instance will create a new object, this instance is then reused for the duration of the container | |
PerHttpContext | 3 | Do not use. An instance will be created and reused for the lifetime of a HTTP Request. Requires additional container management. | |
PerHttpSession | 4 | Do not use. An instance will be created and reused for the lifetime of a HTTP Session. Requires additional container management. | |
PerThread | 5 | Do not use. An instance will be created and reused for each thread. Requires additional container management. |