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