1 write to TaggedParts
Microsoft.CodeAnalysis.Features (1)
QuickInfo\QuickInfoSection.cs (1)
29TaggedParts = taggedParts.NullToEmpty();
8 references to TaggedParts
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
QuickInfo\SemanticQuickInfoSourceTests.cs (1)
8370item.Sections.First(section => section.Kind == QuickInfoSectionKinds.DocumentationComments).TaggedParts.Select(p => p.Tag).ToArray(),
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
QuickInfo\AbstractSemanticQuickInfoSourceTests.cs (1)
56var text = textBlock != null ? textBlock.TaggedParts : ImmutableArray<TaggedText>.Empty;
Microsoft.CodeAnalysis.ExternalAccess.Xaml (1)
External\ConversionHelpers.cs (1)
25.SelectMany(section => section.TaggedParts.Add(new TaggedText(TextTags.LineBreak, Environment.NewLine)))
Microsoft.CodeAnalysis.Features (4)
QuickInfo\Presentation\QuickInfoContentBuilder.cs (2)
69foreach (var element in descriptionSection.TaggedParts.ToInteractiveTextElements(navigationActionFactory)) 92foreach (var element in documentationCommentsSection.TaggedParts.ToInteractiveTextElements(navigationActionFactory))
QuickInfo\QuickInfoSection.cs (2)
51if (TaggedParts.Length == 0) 57Interlocked.CompareExchange(ref _text, string.Concat(TaggedParts.Select(t => t.Text)), null);
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\Hover\HoverHandler.cs (1)
137.. info.Sections.SelectMany(static s => s.TaggedParts.Add(new TaggedText(TextTags.LineBreak, Environment.NewLine)))