IContainerDebuggerExtension
using Castle.MicroKernel;
using Castle.Windsor.Diagnostics.DebuggerViews;
using System.Collections.Generic;
namespace Castle.Windsor.Diagnostics
{
    public interface IContainerDebuggerExtension
    {
        IEnumerable<DebuggerViewItem> Attach();
        void Init(IKernel kernel, IDiagnosticsHost diagnosticsHost);
    }
}