1 write to TagType
Microsoft.CodeAnalysis.Features (1)
DocumentationComments\DocumentationCommentProposedEdit.cs (1)
27
TagType
= tagType;
9 references to TagType
Microsoft.CodeAnalysis.EditorFeatures (8)
DocumentationComments\CopilotGenerateDocumentationCommentProvider.cs (8)
248
symbolKey = edit.
TagType
.ToString() + "-" + edit.SymbolName;
260
AddNewLinesToCopilotText(copilotStatement, indentText, edit.
TagType
, characterLimit: 120));
268
if (edit.
TagType
== DocumentationCommentTagType.Summary && documentationCommentDictionary.TryGetValue(DocumentationCommentTagType.Summary.ToString(), out var summary) && !string.IsNullOrEmpty(summary))
272
else if (edit.
TagType
== DocumentationCommentTagType.Remarks && documentationCommentDictionary.TryGetValue(DocumentationCommentTagType.Remarks.ToString(), out var remarks) && !string.IsNullOrEmpty(remarks))
276
else if (edit.
TagType
== DocumentationCommentTagType.TypeParam && documentationCommentDictionary.TryGetValue(symbolKey!, out var typeParam) && !string.IsNullOrEmpty(typeParam))
280
else if (edit.
TagType
== DocumentationCommentTagType.Param && documentationCommentDictionary.TryGetValue(symbolKey!, out var param) && !string.IsNullOrEmpty(param))
284
else if (edit.
TagType
== DocumentationCommentTagType.Returns && documentationCommentDictionary.TryGetValue(DocumentationCommentTagType.Returns.ToString(), out var returns) && !string.IsNullOrEmpty(returns))
288
else if (edit.
TagType
== DocumentationCommentTagType.Exception && documentationCommentDictionary.TryGetValue(symbolKey!, out var exception) && !string.IsNullOrEmpty(exception))
Microsoft.CodeAnalysis.ExternalAccess.Copilot (1)
GenerateDocumentation\CopilotDocumentationCommentProposedEditWrapper.cs (1)
24
public CopilotDocumentationCommentTagType TagType => (CopilotDocumentationCommentTagType)_documentationCommentProposedEdit.
TagType
;