1 write to TagType
Microsoft.CodeAnalysis.Features (1)
DocumentationComments\DocumentationCommentProposedEdit.cs (1)
27
TagType
= tagType;
9 references to TagType
Microsoft.CodeAnalysis.Features (8)
DocumentationComments\CopilotDocumentationCommentGenerator.cs (8)
153
symbolKey = edit.
TagType
.ToString() + "-" + edit.SymbolName;
164
var replacementText = AddNewLinesToCopilotText(copilotStatement, indentText, edit.
TagType
, characterLimit: 120);
172
if (edit.
TagType
== DocumentationCommentTagType.Summary && documentationCommentDictionary.TryGetValue(DocumentationCommentTagType.Summary.ToString(), out var summary) && !string.IsNullOrEmpty(summary))
176
else if (edit.
TagType
== DocumentationCommentTagType.Remarks && documentationCommentDictionary.TryGetValue(DocumentationCommentTagType.Remarks.ToString(), out var remarks) && !string.IsNullOrEmpty(remarks))
180
else if (edit.
TagType
== DocumentationCommentTagType.TypeParam && documentationCommentDictionary.TryGetValue(symbolKey!, out var typeParam) && !string.IsNullOrEmpty(typeParam))
184
else if (edit.
TagType
== DocumentationCommentTagType.Param && documentationCommentDictionary.TryGetValue(symbolKey!, out var param) && !string.IsNullOrEmpty(param))
188
else if (edit.
TagType
== DocumentationCommentTagType.Returns && documentationCommentDictionary.TryGetValue(DocumentationCommentTagType.Returns.ToString(), out var returns) && !string.IsNullOrEmpty(returns))
192
else if (edit.
TagType
== DocumentationCommentTagType.Exception && documentationCommentDictionary.TryGetValue(symbolKey!, out var exception) && !string.IsNullOrEmpty(exception))
Microsoft.CodeAnalysis.Features.ExternalAccess (1)
Copilot\GenerateDocumentation\CopilotDocumentationCommentProposedEditWrapper.cs (1)
24
public CopilotDocumentationCommentTagType TagType => (CopilotDocumentationCommentTagType)_documentationCommentProposedEdit.
TagType
;