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