SonarLint.VisualStudio.Integration.Vsix.SonarAnalyzerManager.GetIsBoundWithoutAnalyzer C# (CSharp) Method

GetIsBoundWithoutAnalyzer() private method

private GetIsBoundWithoutAnalyzer ( ProjectAnalyzerStatus projectAnalyzerStatus ) : bool
projectAnalyzerStatus ProjectAnalyzerStatus
return bool
        internal /*for testing purposes*/ bool GetIsBoundWithoutAnalyzer(ProjectAnalyzerStatus projectAnalyzerStatus)
        {
            return projectAnalyzerStatus == ProjectAnalyzerStatus.NoAnalyzer &&
                this.activeSolutionBoundTracker != null &&
                this.activeSolutionBoundTracker.IsActiveSolutionBound;
        }