ServiceLifetime
Specifies the lifetime of a service in an IServiceCollection.
namespace Microsoft.Extensions.DependencyInjection
{
public enum ServiceLifetime
{
Singleton,
Scoped,
Transient
}
}