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