ResolutionBehavior
Service resolution behavior.
using System;
namespace Stashbox.Resolution
{
[Flags]
public enum ResolutionBehavior
{
Default = 3,
Parent = 1,
Current = 2,
ParentDependency = 4
}
}