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:
401
var
listType = rawListType switch
403
"table" =>
DocumentationCommentListType
.Table,
404
"number" =>
DocumentationCommentListType
.Number,
405
"bullet" =>
DocumentationCommentListType
.Bullet,
406
_ =>
DocumentationCommentListType
.None,