ServiceLifetime Enum

Definition

Enumerates all kinds of lifetime of a service in an IContainerBuilder.

public enum ServiceLifetime
type ServiceLifetime = 
Public Enum ServiceLifetime
Inheritance
ServiceLifetime

Fields

Scoped 1

Indicates that a new instance of the service will be created for each scope.

Singleton 0

Indicates that a single instance of the service will be created.

Transient 2

Indicates that a new instance of the service will be created every time it is requested.

Applies to