22 references to QuickInfoSectionKinds
Microsoft.CodeAnalysis.CSharp.Features (1)
QuickInfo\CSharpDiagnosticAnalyzerQuickInfoProvider.cs (1)
155
QuickInfoSection.Create(
QuickInfoSectionKinds
.Description,
Microsoft.CodeAnalysis.Features (18)
QuickInfo\Presentation\QuickInfoContentBuilder.cs (2)
224
case
QuickInfoSectionKinds
.Description:
228
case
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)
50
AddSection(
QuickInfoSectionKinds
.Description, builder.ToImmutable());
65
AddSection(
QuickInfoSectionKinds
.Description, builder.ToImmutable());
70
AddSection(
QuickInfoSectionKinds
.Description, mainDescriptionTaggedParts);
75
AddSection(
QuickInfoSectionKinds
.DocumentationComments, docParts);
88
AddSection(
QuickInfoSectionKinds
.RemarksDocumentationComments, builder.ToImmutable());
97
AddSection(
QuickInfoSectionKinds
.ReturnsDocumentationComments, builder.ToImmutable());
106
AddSection(
QuickInfoSectionKinds
.ValueDocumentationComments, builder.ToImmutable());
114
AddSection(
QuickInfoSectionKinds
.TypeParameters, builder.ToImmutable());
122
AddSection(
QuickInfoSectionKinds
.AnonymousTypes, builder.ToImmutable());
133
AddSection(
QuickInfoSectionKinds
.Usage, usageTextBuilder.ToImmutable());
136
AddSection(
QuickInfoSectionKinds
.NullabilityAnalysis, [new TaggedText(TextTags.Text, nullabilityInfo)]);
148
AddSection(
QuickInfoSectionKinds
.InterceptedBy, builder.ToImmutable());
152
AddSection(
QuickInfoSectionKinds
.Exception, exceptionsText);
155
AddSection(
QuickInfoSectionKinds
.Captures, capturesText);
Microsoft.CodeAnalysis.VisualBasic.Features (3)
QuickInfo\VisualBasicSemanticQuickInfoProvider.vb (3)
185
Return QuickInfoItem.Create(token.Span, sections:=ImmutableArray.Create(QuickInfoSection.Create(
QuickInfoSectionKinds
.Description, ImmutableArray.Create(New TaggedText(TextTags.Text, VBFeaturesResources.Multiple_Types)))))
231
QuickInfoSection.Create(
QuickInfoSectionKinds
.Description, builder.ToTaggedText()),
232
QuickInfoSection.Create(
QuickInfoSectionKinds
.DocumentationComments, ImmutableArray.Create(New TaggedText(TextTags.Text, documentation.DocumentationText)))))