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