IScopeAccessor
Provides access to IScopeCache held in whatever is appropriate for given scope.
using Castle.MicroKernel.Context;
using System;
namespace Castle.MicroKernel.Lifestyle.Scoped
{
public interface IScopeAccessor : IDisposable
{
ILifetimeScope GetScope(CreationContext context);
}
}