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)
536
var elements = IntelliSense.Helpers.BuildInteractiveTextElements(description.
TaggedParts
, context).ToArray();
Microsoft.CodeAnalysis.Features (4)
Completion\CommonCompletionProvider.cs (1)
70
var 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.
49
if (taggedParts !=
TaggedParts
)
68
Interlocked.CompareExchange(ref _text, string.Concat(
TaggedParts
.Select(p => p.Text)), null);
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\Completion\CompletionResolveHandler.cs (2)
83
vsCompletionItem.Description = new ClassifiedTextElement(description.
TaggedParts
89
completionItem.Documentation = ProtocolConversions.GetDocumentationMarkupContent(description.
TaggedParts
, document, clientSupportsMarkdown);