11 references to DocumentationCommentListType
Microsoft.CodeAnalysis.Features (11)
DocumentationComments\AbstractDocumentationCommentFormattingService.cs (11)
60private readonly List<(DocumentationCommentListType type, int index, bool renderedItem)> _listStack = new(); 125public void PushList(DocumentationCommentListType listType) 250case DocumentationCommentListType.Bullet: 254case DocumentationCommentListType.Number: 258case DocumentationCommentListType.Table: 259case DocumentationCommentListType.None: 392var listType = rawListType switch 394"table" => DocumentationCommentListType.Table, 395"number" => DocumentationCommentListType.Number, 396"bullet" => DocumentationCommentListType.Bullet, 397_ => DocumentationCommentListType.None,