using System; namespace TheXamlGuy.Framework.Core { public interface IScope { IDisposable Enter(object target); bool IsActive(object target); } }