Analyzer.OverallMetricCalculator.tryAnalyze C# (CSharp) Method

tryAnalyze() public method

public tryAnalyze ( IGraph graph, BackgroundWorker bgw, AnalyzeResultBase &results ) : bool
graph IGraph
bgw System.ComponentModel.BackgroundWorker
results AnalyzeResultBase
return bool
        public override bool tryAnalyze(IGraph graph, BackgroundWorker bgw, out AnalyzeResultBase results)
        {
            OverallMetrics oOverallMetrics;
            bool rv = TryCalculateGraphMetrics(graph, bgw, out oOverallMetrics);
            results = oOverallMetrics;
            return rv;
        }