5 references to TryGetSectionForLanguage
Microsoft.CodeAnalysis.Workspaces (1)
EditorConfigFile.cs (1)
33=> TryGetSectionForLanguage(language, SectionMatch.ExactLanguageMatch, out sectionResult);
Microsoft.CodeAnalysis.Workspaces.UnitTests (4)
EditorConfigParsing\EditorConfigFileParserTests.cs (4)
79Assert.True(parseResults.TryGetSectionForLanguage(Language.CSharp, SectionMatch.ExactLanguageMatchWithOthers, out var section)); 95Assert.True(parseResults.TryGetSectionForLanguage(Language.CSharp, SectionMatch.Any, out var section)); 99Assert.True(parseResults.TryGetSectionForLanguage(Language.VisualBasic, SectionMatch.Any, out section)); 103Assert.True(parseResults.TryGetSectionForLanguage((Language.CSharp | Language.VisualBasic), SectionMatch.Any, out section));