12 references to ContainerStart
Microsoft.CodeAnalysis.EditorFeatures (2)
IntelliSense\Helpers.cs (2)
60if (part.Tag == TextTags.ContainerStart) 100if (part.Tag is TextTags.ContainerStart
Microsoft.CodeAnalysis.Features (10)
Common\TaggedText.cs (1)
242case TextTags.ContainerStart:
Common\TextTags.cs (4)
50/// Indicates the start of a text container. The elements after <see cref="ContainerStart"/> through (but not 52/// as an inline element relative to surrounding elements. The text of the <see cref="ContainerStart"/> element 56internal const string ContainerStart = nameof(ContainerStart); 59/// Indicates the end of a text container. See <see cref="ContainerStart"/>.
DocumentationComments\AbstractDocumentationCommentFormattingService.cs (3)
251Builder.Add(new TaggedText(TextTags.ContainerStart, "• ")); 255Builder.Add(new TaggedText(TextTags.ContainerStart, $"{_listStack[i].index}. ")); 261Builder.Add(new TaggedText(TextTags.ContainerStart, string.Empty));
LanguageServices\SymbolDisplayService\AbstractSymbolDisplayService.AbstractSymbolDescriptionBuilder.cs (2)
219builder.Add(new TaggedText(TextTags.ContainerStart, " ")); 235builder.Add(new TaggedText(TextTags.ContainerStart, " "));