Meta.BuildProfiler.BuildProfiler C# (CSharp) Method

BuildProfiler() public method

public BuildProfiler ( EnvDTE proj, int stackMaxSize, IVsOutputWindowPane bpane, IVsOutputWindowPane ppane, System.Action onFinished, string singleFile = null ) : System
proj EnvDTE
stackMaxSize int
bpane IVsOutputWindowPane
ppane IVsOutputWindowPane
onFinished System.Action
singleFile string
return System
        public BuildProfiler(EnvDTE.Project proj, int stackMaxSize, IVsOutputWindowPane bpane, IVsOutputWindowPane ppane, Action onFinished, string singleFile = null)
        {
            if (singleFile != null)
                onlyFile = singleFile;
            project = proj;
            clTool = new VCCompilerHelper(project);
            profilePane = ppane;
            buildPane = bpane;
            profiler = new ActiveObject(stackMaxSize);
            signalFinished = onFinished;
            Initialize();
            profiler.Signal();
        }