22 references to QuickInfoSectionKinds
Microsoft.CodeAnalysis.CSharp.Features (1)
QuickInfo\CSharpDiagnosticAnalyzerQuickInfoProvider.cs (1)
155QuickInfoSection.Create(QuickInfoSectionKinds.Description,
Microsoft.CodeAnalysis.Features (18)
QuickInfo\Presentation\QuickInfoContentBuilder.cs (2)
224case QuickInfoSectionKinds.Description: 228case QuickInfoSectionKinds.DocumentationComments:
QuickInfo\QuickInfoSection.cs (2)
17/// The kind of this section. Use <see cref="QuickInfoSectionKinds"/> for the most common kinds. 35/// <param name="kind">The kind of the section. Use <see cref="QuickInfoSectionKinds"/> for the most common kinds.</param>
QuickInfo\QuickInfoUtilities.cs (14)
50AddSection(QuickInfoSectionKinds.Description, builder.ToImmutable()); 65AddSection(QuickInfoSectionKinds.Description, builder.ToImmutable()); 70AddSection(QuickInfoSectionKinds.Description, mainDescriptionTaggedParts); 75AddSection(QuickInfoSectionKinds.DocumentationComments, docParts); 88AddSection(QuickInfoSectionKinds.RemarksDocumentationComments, builder.ToImmutable()); 97AddSection(QuickInfoSectionKinds.ReturnsDocumentationComments, builder.ToImmutable()); 106AddSection(QuickInfoSectionKinds.ValueDocumentationComments, builder.ToImmutable()); 114AddSection(QuickInfoSectionKinds.TypeParameters, builder.ToImmutable()); 122AddSection(QuickInfoSectionKinds.AnonymousTypes, builder.ToImmutable()); 133AddSection(QuickInfoSectionKinds.Usage, usageTextBuilder.ToImmutable()); 136AddSection(QuickInfoSectionKinds.NullabilityAnalysis, [new TaggedText(TextTags.Text, nullabilityInfo)]); 148AddSection(QuickInfoSectionKinds.InterceptedBy, builder.ToImmutable()); 152AddSection(QuickInfoSectionKinds.Exception, exceptionsText); 155AddSection(QuickInfoSectionKinds.Captures, capturesText);
Microsoft.CodeAnalysis.VisualBasic.Features (3)
QuickInfo\VisualBasicSemanticQuickInfoProvider.vb (3)
185Return QuickInfoItem.Create(token.Span, sections:=ImmutableArray.Create(QuickInfoSection.Create(QuickInfoSectionKinds.Description, ImmutableArray.Create(New TaggedText(TextTags.Text, VBFeaturesResources.Multiple_Types))))) 231QuickInfoSection.Create(QuickInfoSectionKinds.Description, builder.ToTaggedText()), 232QuickInfoSection.Create(QuickInfoSectionKinds.DocumentationComments, ImmutableArray.Create(New TaggedText(TextTags.Text, documentation.DocumentationText)))))