11 references to DocumentationCommentListType
Microsoft.CodeAnalysis.Features (11)
DocumentationComments\AbstractDocumentationCommentFormattingService.cs (11)
59
private readonly List<(
DocumentationCommentListType
type, int index, bool renderedItem)> _listStack = [];
124
public void PushList(
DocumentationCommentListType
listType)
249
case
DocumentationCommentListType
.Bullet:
253
case
DocumentationCommentListType
.Number:
257
case
DocumentationCommentListType
.Table:
258
case
DocumentationCommentListType
.None:
391
var
listType = rawListType switch
393
"table" =>
DocumentationCommentListType
.Table,
394
"number" =>
DocumentationCommentListType
.Number,
395
"bullet" =>
DocumentationCommentListType
.Bullet,
396
_ =>
DocumentationCommentListType
.None,