1 implementation of GetDocumentationCommentSnippetOnEnterTyped
Microsoft.CodeAnalysis.Features (1)
DocumentationComments\AbstractDocumentationCommentSnippetService.cs (1)
189public DocumentationCommentSnippet? GetDocumentationCommentSnippetOnEnterTyped(SyntaxTree syntaxTree, SourceText text, int position, in DocumentationCommentOptions options, CancellationToken cancellationToken)
3 references to GetDocumentationCommentSnippetOnEnterTyped
Microsoft.CodeAnalysis.EditorFeatures (1)
DocumentationComments\AbstractDocumentationCommentCommandHandler.cs (1)
64=> service.GetDocumentationCommentSnippetOnEnterTyped(syntaxTree, text, position, options, cancellationToken);
Microsoft.CodeAnalysis.ExternalAccess.OmniSharp (1)
DocumentationComments\OmniSharpDocumentationCommentsSnippetService.cs (1)
36return Translate(service.GetDocumentationCommentSnippetOnEnterTyped(syntaxTree, text, position, options.UnderlyingObject, cancellationToken));
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\OnAutoInsert\OnAutoInsertHandler.cs (1)
114? service.GetDocumentationCommentSnippetOnEnterTyped(syntaxTree, sourceText, position, options, cancellationToken)