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