11 references to DocumentationCommentListType
Microsoft.CodeAnalysis.Features (11)
DocumentationComments\AbstractDocumentationCommentFormattingService.cs (11)
60
private readonly List<(
DocumentationCommentListType
type, int index, bool renderedItem)> _listStack = [];
120
public void PushList(
DocumentationCommentListType
listType)
245
case
DocumentationCommentListType
.Bullet:
249
case
DocumentationCommentListType
.Number:
253
case
DocumentationCommentListType
.Table:
254
case
DocumentationCommentListType
.None:
408
var
listType = rawListType switch
410
"table" =>
DocumentationCommentListType
.Table,
411
"number" =>
DocumentationCommentListType
.Number,
412
"bullet" =>
DocumentationCommentListType
.Bullet,
413
_ =>
DocumentationCommentListType
.None,