1 implementation of GetDocumentationCommentSnippetOnEnterTyped
Microsoft.CodeAnalysis.Features (1)
DocumentationComments\AbstractDocumentationCommentSnippetService.cs (1)
259public DocumentationCommentSnippet? GetDocumentationCommentSnippetOnEnterTyped(ParsedDocument document, int position, in DocumentationCommentOptions options, CancellationToken cancellationToken)
3 references to GetDocumentationCommentSnippetOnEnterTyped
Microsoft.CodeAnalysis.EditorFeatures (1)
DocumentationComments\AbstractDocumentationCommentCommandHandler.cs (1)
65=> service.GetDocumentationCommentSnippetOnEnterTyped(document, position, options, cancellationToken);
Microsoft.CodeAnalysis.ExternalAccess.OmniSharp (1)
DocumentationComments\OmniSharpDocumentationCommentsSnippetService.cs (1)
37return Translate(service.GetDocumentationCommentSnippetOnEnterTyped(ParsedDocument.CreateSynchronously(document, cancellationToken), position, options.UnderlyingObject, cancellationToken));
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\OnAutoInsert\OnAutoInsertHandler.cs (1)
127? service.GetDocumentationCommentSnippetOnEnterTyped(parsedDocument, position, options, cancellationToken)