1 implementation of IDocumentationCommentSnippetService
Microsoft.CodeAnalysis.Features (1)
22 references to IDocumentationCommentSnippetService
Microsoft.CodeAnalysis.CSharp.Features (1)
Microsoft.CodeAnalysis.EditorFeatures (13)
DocumentationComments\AbstractDocumentationCommentCommandHandler.cs (13)
60private static DocumentationCommentSnippet? InsertOnCharacterTyped(IDocumentationCommentSnippetService service, SyntaxTree syntaxTree, SourceText text, int position, DocumentationCommentOptions options, CancellationToken cancellationToken)
63private static DocumentationCommentSnippet? InsertOnEnterTyped(IDocumentationCommentSnippetService service, SyntaxTree syntaxTree, SourceText text, int position, DocumentationCommentOptions options, CancellationToken cancellationToken)
66private static DocumentationCommentSnippet? InsertOnCommandInvoke(IDocumentationCommentSnippetService service, SyntaxTree syntaxTree, SourceText text, int position, DocumentationCommentOptions options, CancellationToken cancellationToken)
79Func<IDocumentationCommentSnippetService, SyntaxTree, SourceText, int, DocumentationCommentOptions, CancellationToken, DocumentationCommentSnippet?> getSnippetAction,
94var service = document.GetRequiredLanguageService<IDocumentationCommentSnippetService>();
209var service = document.GetRequiredLanguageService<IDocumentationCommentSnippetService>();
263var service = document.GetRequiredLanguageService<IDocumentationCommentSnippetService>();
296var service = document.GetRequiredLanguageService<IDocumentationCommentSnippetService>();
304private void InsertExteriorTriviaIfNeeded(IDocumentationCommentSnippetService service, ITextView textView, ITextBuffer subjectBuffer, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.ExternalAccess.OmniSharp (4)
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Microsoft.CodeAnalysis.VisualBasic.Features (1)