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