1 write to TaggedParts
Microsoft.CodeAnalysis.Features (1)
Completion\CompletionDescription.cs (1)
29=> TaggedParts = taggedParts.NullToEmpty();
7 references to TaggedParts
Microsoft.CodeAnalysis.EditorFeatures (1)
IntelliSense\AsyncCompletion\CompletionSource.cs (1)
536var elements = IntelliSense.Helpers.BuildInteractiveTextElements(description.TaggedParts, context).ToArray();
Microsoft.CodeAnalysis.Features (4)
Completion\CommonCompletionProvider.cs (1)
70var parts = await TryAddSnippetInvocationPartAsync(document, item, description.TaggedParts, cancellationToken).ConfigureAwait(false);
Completion\CompletionDescription.cs (3)
45/// Creates a copy of this <see cref="CompletionDescription"/> with the <see cref="TaggedParts"/> property changed. 49if (taggedParts != TaggedParts) 68Interlocked.CompareExchange(ref _text, string.Concat(TaggedParts.Select(p => p.Text)), null);
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\Completion\CompletionResolveHandler.cs (2)
83vsCompletionItem.Description = new ClassifiedTextElement(description.TaggedParts 89completionItem.Documentation = ProtocolConversions.GetDocumentationMarkupContent(description.TaggedParts, document, clientSupportsMarkdown);