2 writes to TagName
Microsoft.AspNetCore.Razor (2)
TagHelpers\TagHelperContext.cs (2)
29TagName = tagName; 85TagName = tagName;
5 references to TagName
Microsoft.AspNetCore.Razor.Runtime.Test (1)
Runtime\TagHelpers\TagHelperExecutionContextTest.cs (1)
183Assert.Equal(tagName, context.TagName);
Microsoft.AspNetCore.Razor.Test (2)
TagHelpers\TagHelperContextTest.cs (2)
37Assert.Equal(tagName, context.TagName); 60Assert.Equal("test", context.TagName);
RazorWebSite (2)
Services\TestBodyTagHelperComponent.cs (1)
36if (string.Equals(context.TagName, "body", StringComparison.Ordinal) &&
Services\TestHeadTagHelperComponent.cs (1)
14if (string.Equals(context.TagName, "head", StringComparison.Ordinal) && output.Attributes.ContainsName("inject"))