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)
214
symbolKey = edit.
TagType
.ToString() + "-" + edit.SymbolName;
226
AddNewLinesToCopilotText(copilotStatement, indentText, edit.
TagType
, characterLimit: 120));
234
if (edit.
TagType
== DocumentationCommentTagType.Summary && documentationCommentDictionary.TryGetValue(DocumentationCommentTagType.Summary.ToString(), out var summary) && !string.IsNullOrEmpty(summary))
238
else if (edit.
TagType
== DocumentationCommentTagType.Remarks && documentationCommentDictionary.TryGetValue(DocumentationCommentTagType.Remarks.ToString(), out var remarks) && !string.IsNullOrEmpty(remarks))
242
else if (edit.
TagType
== DocumentationCommentTagType.TypeParam && documentationCommentDictionary.TryGetValue(symbolKey!, out var typeParam) && !string.IsNullOrEmpty(typeParam))
246
else if (edit.
TagType
== DocumentationCommentTagType.Param && documentationCommentDictionary.TryGetValue(symbolKey!, out var param) && !string.IsNullOrEmpty(param))
250
else if (edit.
TagType
== DocumentationCommentTagType.Returns && documentationCommentDictionary.TryGetValue(DocumentationCommentTagType.Returns.ToString(), out var returns) && !string.IsNullOrEmpty(returns))
254
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
;