Lifetimes
Contains all the built-in lifetime managers.
namespace Stashbox.Lifetime
{
public static class Lifetimes
{
public static readonly LifetimeDescriptor Transient = new TransientLifetime();
public static readonly LifetimeDescriptor Singleton = new SingletonLifetime();
public static readonly LifetimeDescriptor Scoped = new ScopedLifetime();
public static readonly LifetimeDescriptor NamedScope = new NamedScopeLifetime();
public static readonly LifetimeDescriptor PerScopedRequest = new PerScopedRequestLifetime();
}
}