4 references to _parsedSnippetsCache
Microsoft.CodeAnalysis.LanguageServer.Protocol (4)
Handler\InlineCompletions\XmlSnippetParser.cs (4)
37
if (
_parsedSnippetsCache
.TryGetValue(matchingSnippetInfo.Title, out var cachedSnippet))
61
_parsedSnippetsCache
.TryAdd(matchingSnippetInfo.Title, parsedSnippet);
113
public int GetCachedSnippetsCount() => _snippetParser.
_parsedSnippetsCache
.Count;
115
public ParsedXmlSnippet GetCachedSnippet(string snippet) => _snippetParser.
_parsedSnippetsCache
[snippet]!;