Enum ServiceLifetime
The lifetime of a service.
Namespace: Unity.AppUI.MVVM
Syntax
public enum ServiceLifetime
Fields
Name | Description | Value |
---|---|---|
Singleton | A single instance of the service will be created. |
0 |
Scoped | Specifies that a new instance of the service will be created for each scope. |
1 |
Transient | A new instance of the service will be created each time it is requested. |
2 |