9 references to Title
Microsoft.CodeAnalysis.CSharp.Features (1)
Completion\CompletionProviders\SnippetCompletionProvider.cs (1)
193description: (snippet.Title + Environment.NewLine + snippet.Description).ToSymbolDisplayParts(),
Microsoft.CodeAnalysis.LanguageServer.Protocol (8)
Handler\InlineCompletions\XmlSnippetParser.cs (8)
37if (_parsedSnippetsCache.TryGetValue(matchingSnippetInfo.Title, out var cachedSnippet)) 41logger.LogWarning($"Returning a null cached snippet for {matchingSnippetInfo.Title}"); 50logger.LogDebug($"Reading snippet for {matchingSnippetInfo.Title} with path {matchingSnippetInfo.Path}"); 55logger.LogError($"Got exception parsing xml snippet {matchingSnippetInfo.Title} from file {matchingSnippetInfo.Path}"); 61_parsedSnippetsCache.TryAdd(matchingSnippetInfo.Title, parsedSnippet); 89throw new ArgumentException($"Missing file path for snippet {snippetInfo.Title}"); 94throw new InvalidOperationException($"Snippet {snippetInfo.Title} has an invalid file path: {snippetInfo.Path}"); 99var snippet = CodeSnippet.ReadSnippetFromFile(snippetInfo.Path, snippetInfo.Title);