11 instantiations of BoundElementDescriptionInfo
Microsoft.CodeAnalysis.Razor.Workspaces (1)
Tooltip\BoundElementDescriptionInfo.cs (1)
14
return new
BoundElementDescriptionInfo
(tagHelperTypeName, tagHelper.Documentation);
Microsoft.CodeAnalysis.Razor.Workspaces.UnitTests (10)
Tooltip\ClassifiedTagHelperTooltipFactoryTest.cs (6)
189
new
BoundElementDescriptionInfo
(
231
new
BoundElementDescriptionInfo
(
272
new
BoundElementDescriptionInfo
("Microsoft.AspNetCore.SomeTagHelper", "<summary>\nUses <see cref=\"T:System.Collections.List{System.String}\" />s\n</summary>"),
273
new
BoundElementDescriptionInfo
("Microsoft.AspNetCore.OtherTagHelper", "<summary>\nAlso uses <see cref=\"T:System.Collections.List{System.String}\" />s\n\r\n\r\r</summary>"),
468
new
BoundElementDescriptionInfo
("Microsoft.AspNetCore.SomeTagHelper", "<summary>\nUses <see cref=\"T:System.Collections.List{System.String}\" />s\n</summary>"),
469
new
BoundElementDescriptionInfo
("Microsoft.AspNetCore.OtherTagHelper", "<summary>\nAlso uses <see cref=\"T:System.Collections.List{System.String}\" />s\n\r\n\r\r</summary>"),
Tooltip\MarkupTagHelperTooltipFactoryTest.cs (4)
84
new
BoundElementDescriptionInfo
("Microsoft.AspNetCore.SomeTagHelper", "<summary>Uses <see cref=\"T:System.Collections.List{System.String}\" />s</summary>"),
107
new
BoundElementDescriptionInfo
("Microsoft.AspNetCore.SomeTagHelper", "<summary>Uses <see cref=\"T:System.Collections.List{System.String}\" />s</summary>"),
157
new
BoundElementDescriptionInfo
("Microsoft.AspNetCore.SomeTagHelper", "<summary>\nUses <see cref=\"T:System.Collections.List{System.String}\" />s\n</summary>"),
158
new
BoundElementDescriptionInfo
("Microsoft.AspNetCore.OtherTagHelper", "<summary>\nAlso uses <see cref=\"T:System.Collections.List{System.String}\" />s\n\r\n\r\r</summary>"),
7 references to BoundElementDescriptionInfo
Microsoft.CodeAnalysis.Razor.Workspaces (7)
Completion\TagHelperCompletionProvider.cs (1)
294
var descriptionInfo = new AggregateBoundElementDescription(tagHelpers.SelectAsArray(
BoundElementDescriptionInfo
.From));
Hover\HoverFactory.cs (1)
231
.SelectAsArray(
BoundElementDescriptionInfo
.From);
Tooltip\AggregateBoundElementDescription.cs (2)
8
internal sealed record AggregateBoundElementDescription(ImmutableArray<
BoundElementDescriptionInfo
> DescriptionInfos)
10
public static readonly AggregateBoundElementDescription Empty = new(ImmutableArray<
BoundElementDescriptionInfo
>.Empty);
Tooltip\BoundElementDescriptionInfo.cs (1)
10
public static
BoundElementDescriptionInfo
From(TagHelperDescriptor tagHelper)
Tooltip\ClassifiedTagHelperTooltipFactory.cs (1)
160
foreach (
var
descriptionInfo in associatedTagHelperInfos)
Tooltip\MarkupTagHelperTooltipFactory.cs (1)
43
foreach (
var
descriptionInfo in associatedTagHelperInfos)