1 write to TaggedParts
Microsoft.CodeAnalysis.Features (1)
QuickInfo\QuickInfoSection.cs (1)
29TaggedParts = taggedParts.NullToEmpty();
11 references to TaggedParts
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
QuickInfo\SemanticQuickInfoSourceTests.cs (1)
7646item.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 : [];
Microsoft.CodeAnalysis.ExternalAccess.Xaml (2)
External\ConversionHelpers.cs (1)
25.SelectMany(section => section.TaggedParts.Add(new TaggedText(TextTags.LineBreak, Environment.NewLine)))
Internal\DescriptionService.cs (1)
77foreach (var part in section.TaggedParts)
Microsoft.CodeAnalysis.Features (5)
QuickInfo\Presentation\QuickInfoContentBuilder.cs (3)
70foreach (var element in descriptionSection.TaggedParts.ToInteractiveTextElements(navigationActionFactory)) 93foreach (var element in documentationCommentsSection.TaggedParts.ToInteractiveTextElements(navigationActionFactory)) 121foreach (var element in section.TaggedParts.ToInteractiveTextElements(navigationActionFactory))
QuickInfo\QuickInfoSection.cs (2)
49if (TaggedParts.Length == 0) 55Interlocked.CompareExchange(ref field, 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)))
Microsoft.VisualStudio.LanguageServices.Xaml (1)
Implementation\LanguageServer\Extensions\SymbolExtensions.cs (1)
64builder.AddRange(section.TaggedParts);