ServiceStack.BundlerRunOnSave.SolutionEventsListener.SolutionEventsListener C# (CSharp) Method

SolutionEventsListener() public method

public SolutionEventsListener ( ) : System
return System
        public SolutionEventsListener()
        {
            InitNullEvents();

            solution = Package.GetGlobalService(typeof(SVsSolution)) as IVsSolution;

            if (solution != null)
            {
                solution.AdviseSolutionEvents(this, out solutionEventsCookie);
            }
        }