5 references to TagContentGroupName
Microsoft.CodeAnalysis.Razor.Workspaces (5)
Tooltip\ClassifiedTagHelperTooltipFactory.cs (2)
416var value = currentCodeMatch.Groups[DocCommentHelpers.TagContentGroupName].Value; 430var value = currentCrefMatch.Groups[DocCommentHelpers.TagContentGroupName].Value;
Tooltip\DocCommentHelpers.cs (2)
15private static readonly Regex s_codeRegex = new Regex($"""<(?:c|code)>(?<{TagContentGroupName}>.*?)<\/(?:c|code)>""", RegexOptions.Compiled, TimeSpan.FromSeconds(1)); 16private static readonly Regex s_crefRegex = new Regex($"""<(?:see|seealso)[\s]+cref="(?<{TagContentGroupName}>[^">]+)"[^>]*>""", RegexOptions.Compiled, TimeSpan.FromSeconds(1));
Tooltip\MarkupTagHelperTooltipFactory.cs (1)
187var value = cref.Groups[DocCommentHelpers.TagContentGroupName].Value;