1 instantiation of QuickInfoSection
Microsoft.CodeAnalysis.Features (1)
QuickInfo\QuickInfoSection.cs (1)
38=> new(kind, taggedParts);
28 references to QuickInfoSection
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
QuickInfo\DiagnosticAnalyzerQuickInfoSourceTests.cs (1)
186var description = info?.Sections.FirstOrDefault(s => s.Kind == QuickInfoSectionKinds.Description);
Microsoft.CodeAnalysis.CSharp.Features (1)
QuickInfo\CSharpDiagnosticAnalyzerQuickInfoProvider.cs (1)
166QuickInfoSection.Create(QuickInfoSectionKinds.Description, new[]
Microsoft.CodeAnalysis.EditorFeatures (2)
IntelliSense\QuickInfo\IntellisenseQuickInfoBuilder.cs (2)
50var descSection = quickInfoItem.Sections.FirstOrDefault(s => s.Kind == QuickInfoSectionKinds.Description); 72var documentationCommentSection = quickInfoItem.Sections.FirstOrDefault(s => s.Kind == QuickInfoSectionKinds.DocumentationComments);
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (2)
QuickInfo\AbstractSemanticQuickInfoSourceTests.cs (2)
52ImmutableArray<QuickInfoSection> sections, 56var textBlock = sections.FirstOrDefault(tb => tb.Kind == textBlockKind);
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (8)
IntelliSense\IntellisenseQuickInfoBuilderTests.vb (8)
29QuickInfoSection.Create( 50QuickInfoSection.Create( 53QuickInfoSection.Create( 121QuickInfoSection.Create( 142QuickInfoSection.Create( 206QuickInfoSection.Create( 227QuickInfoSection.Create( 241QuickInfoSection.Create(
Microsoft.CodeAnalysis.Features (10)
QuickInfo\QuickInfoItem.cs (5)
24/// One or more <see cref="QuickInfoSection"/> describing the item. 26public ImmutableArray<QuickInfoSection> Sections { get; } 36ImmutableArray<QuickInfoSection> sections, 41Sections = sections.IsDefault ? ImmutableArray<QuickInfoSection>.Empty : sections; 48ImmutableArray<QuickInfoSection> sections = default,
QuickInfo\QuickInfoSection.cs (2)
33/// Creates a new instance of <see cref="QuickInfoSection"/>. 37public static QuickInfoSection Create(string? kind, ImmutableArray<TaggedText> taggedParts)
QuickInfo\QuickInfoSectionKinds.cs (1)
8/// The set of well known kinds used for the <see cref="QuickInfoSection.Kind"/> property.
QuickInfo\QuickInfoUtilities.cs (2)
41using var _1 = ArrayBuilder<QuickInfoSection>.GetInstance(out var sections); 161=> sections.Add(QuickInfoSection.Create(kind, taggedParts));
Microsoft.CodeAnalysis.VisualBasic.Features (3)
QuickInfo\VisualBasicSemanticQuickInfoProvider.vb (3)
196Return QuickInfoItem.Create(token.Span, sections:=ImmutableArray.Create(QuickInfoSection.Create(QuickInfoSectionKinds.Description, ImmutableArray.Create(New TaggedText(TextTags.Text, VBFeaturesResources.Multiple_Types))))) 242QuickInfoSection.Create(QuickInfoSectionKinds.Description, builder.ToTaggedText()), 243QuickInfoSection.Create(QuickInfoSectionKinds.DocumentationComments, ImmutableArray.Create(New TaggedText(TextTags.Text, documentation.DocumentationText)))))
Microsoft.VisualStudio.LanguageServices.Xaml (1)
Implementation\LanguageServer\Extensions\SymbolExtensions.cs (1)
60foreach (var section in quickInfo.Sections)